wordpress首页显示文章摘要插件
6月 29th, 2008
显示WordPress文章摘要信息。 作者: Yskin,下载地址为: wp-CJK-excerpt 1.3 下载地址(失效)『网盘』
具体的配置方法:
找到模板文件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 } ?>
如果内容页出现问题,将原index.php改为single.php便可!
保存,就OK了。
1 条评论
magsrypaujp ‾