本站使用的WordPress插件

Theme Test Drive
模板测试插件(08/12/28)

No Self Pings
解决 WordPress 内部文章互 Ping 的插件(08/09/18)

中文 WordPress 工具箱
基本只用到日志截段功能

CoolCode
代码高亮插件

Dean’s Permalinks Migration
转换文章永久链接

Disable autosave
屏弊WP的自动保存功能

DupPrevent
据说可以防止你的ADSENSE被GOOGLE封

Full Text Feed
FEED全文输出插件

Lightbox 2
图片显示暗箱效果

Plugin Update Plus
自动查找升级你的插件

Spam Karma 2
防止垃圾留言的插件

WordPress Database Backup
备份WordPress数据库

WP-PageNavi
一个分页插件

WP-PostViews
日志查看数插件

Related Posts
显示相关文章的插件

不用插件,简单实现留言倒序

因为大多主题的留言薄都是将最新留言放在最下面,所以很不习惯,通过小修小改即可把留言顺序按照最新留言放在上面了——即实现倒序。

修改 comments.php 里面的评论顺序

1
2
3
4
//也很简单,只需要在文件中替换一处代码:
<?php foreach ($comments as $comment) : ?>
//替换成:
<?php foreach (array_reverse($comments) as $comment) : ?> 

如果有评论编号,做如下要改

通过上面的修改你的留言顺序应该倒过来了,如果有序号的话,还须把序号倒过来才算完美。不过有不少的模板主题的编号代码都不一样,有$iCommentCount或$iCommentnumber,我们仅用$iCommentCount做例子:

1
2
3
4
5
6
7
$iCommentCount = 0;
//...
<?php $iCommentCount++; echo($iCommentCount); ?>
//需要改成初始值为评论总数,输出一次自减一次,循环:
$iCommentCount = get_comments_number();
//...
<?php echo($iCommentCount); $iCommentCount--; ?>

收藏自:http://seosem.ws/wordpress/no-plugin-guestbook-sort/

十个最好的Firefox扩展插件列表

Webware针对不同用户的需求整理了不同的最佳Firefox扩展,相信总有一份列表你会满意,从中发现有价值的内容方便自己的使用。列表如下:

Download.com: Best extensions for Firefox 2
Webware.com’s brothers at Download.com have a good general list, as covered inthis post.

About.com: Top 10 Firefox extensions
A collection of some of the most popular and useful general Firefox extensions.

Irfan Habib: My top 10 Firefox extensions
A thoughtful list for serious Firefox users. See also the comments to this post, which point to other good extensions.

Read/Write Web: Top 10 Firefox Web 2.0 add-ons
The focus is on effective browsing, bookmarks, and RSS. A good lineup if you explore the Web a lot and want to keep track of things you find.

The Simple Dollar: 10 Firefox plugs that save you money
Love the premise, even if it’s stretched a bit thin in this list. This is an unconventional list of extensions that, one way or another, can impact your pocketbook.

继续阅读

本站使用的WordPress插件安装方法

这里是我使用的WP插件,下面是我的安装方法。

网站地图插件Dagon Design Sitemap Generator

复制page.php文件并重命名为 sitemap.php,将如下代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php get_header(); ?>
    <div id="content" class="narrowcolumn">
        <?php if (have_posts()) : while (have_posts()) : the_post(); ?>    
        <div class="post" id="post-<?php the_ID(); ?>">        
            <div class="entry">
        <?php the_content('<p class="serif">阅读全文 &raquo;</p>'); ?>
        <?php wp_link_pages(array('before' => '<p><strong>页面: </strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
        </div>         
    </div>     
    <?php endwhile; endif; ?>      
    <?php edit_post_link('编辑', '<p>', '</p>'); ?>  
    </div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>

改为如下代码:

继续阅读

博客圈最流行的30个 wordpress 插件

原文:staska.net翻译:sein

似乎每个写博的人都列举过自己喜欢的插件,这篇关于 wordpress 插件的文章,是在总结了 48个列表280个插件的基础上写出来的。

Akismet:规则严厉的反 spam 插件。

Google Sitemap Generator:SEO 利器,生成规范的站点地图以便 Google 收录。

Related posts:自动搜索并列举相关文章的插件。

Wp-Contact form:给你的 blog 加一个联系表单。加强版 / 防 spam 版

WordPress database backup:数据库备份插件,免得进 phpmyadmin 那么麻烦,如果你的主机支持 smtp 的话,还可以直接把备份发送到邮箱。

Feedburner Feed Replacement:将原始 feed 地址转向到 feedburner 的烧录地址。

Ultimate Tag Warrior:经典的 tag 插件。

继续阅读

八个无价的WordPress插件

WordPress是一个非常流行的免费网站内容管理软件,然而同时,如果你想为你的网站提供一个良好的平台,那么就需要在默认的Wordpress中增加一些自定义的功能。最简单的方法就是插件。只要将一些特殊的文件放到Wordpress的安装目录下,就可以得到新的功能。这里介绍8个绝对物超所值的Wordpress插件。

  WP Shortstat
  Jeff Minard开发的WP-Shortstat,是将一个简单的网站统计软件“Shortstat”移植到Wordpress。如果你是OS X用户,你还可以下载WP-Shortstat Widget桌面版。

  Get Custom
  经常有Wordpress的新用户问我,“怎么往文章中插入附件呢?”,默认的Wordpress不提供这样的功能,但是它提供了方法。在Wordpress中你可以使用“Custom Fields”来贴上自定义数据,Scott Reilly的“Get Custom”插件可以很容易地做到这一点。

  WP Cache Inspect
  Wordpress 2已经内置了很不错的缓存系统,然而有一些小问题是,它有时会缓存一些你不需要缓存的信息。例如,当你重新设计你网站的栏目时候,无论你刷新了多少次页面,你都发现没有任何改变。Peter Westwood的WP Cache Inspect可以让你在任何需要的时候手动清除缓存。

继续阅读

无需插件,创建WordPress留言板

以默认外观为基准:
1.到默认外观目录下,复制single.php文件,并改名为guestbook.php;
2.打开guestbook.php文件,在

1
<?php get_header();?>
1
2
3
4
5
6
下面,添加代码:
<?php
/*
Template Name: GuestBook
*/

?>

保存.
3.添加一个页面,页面模板选guestbook.php,保存
4.复制comments.php文件,并改名为guestcomments.php;
5.打开guestbook.php文件,修改

1
<?php comments_template();?>

1
<?php comments_template('/guestcomments.php');?>