Posts Tagged ‘wp-CJK-excerpt’

WordPress插件之wp-CJK-excerpt

This item was filled under [ 技术相关 ]

这个插件没有找到中文名字,只能继续用原名表示了。
之所以推荐这个,也是当初虽然看到“中文WordPress工具箱”的功能强大,但对我来说却只用到了它的很少的功能,于是看到了这个插件,很单一,但效果要更好一些,于是准备弃用“中文WordPress工具箱”,改投wp-CJK-excerpt,但其官方网页不知道什么时候已经OVER掉了,也不能下载。在google上找了下,终于发现了这个繁体版的还不错,下载下来简单修改了下,为自己用了。
要修改模板文件index.php页面中的下面这行代码:

<?php the_content(’Read the rest of this entry »’); /*引号中也有可能是其它内容*/ ?>

修改这一行为:

<?php the_excerpt(); ?>

对于没有single.php页面的,还需要自建一个single.php文件,添加如下代码:

<?php if (is_single()) { ?>
<?php the_content(’Read the rest of this entry »’); ?>
<?php } else { ?>
<?php the_excerpt(); ?>
<?php } ?>

这样就可以了。

Continue reading...

Tagged with: [ , ]
第 1 页,共 1 页1