让wordpress主页或者目录显示文章摘要
之前用了excerpt这个插件就能实现了。
后来用了iBlog主题,这个插件就失效了。整个首页很长,效果很差。
根据月光博客的一篇文章。http://www.williamlong.info/archives/1031.html
进行修改完美实现,首页摘要。
在wp-content/themes的index.php或者home.php,找到
-------------------
<?php the_content(); ?>
-------------------
不过有的主题不一样。大家可以查找"the_content",然后修改为
-------------------
<?php if(is_category() || is_archive() || is_home() ) {
the_excerpt();
} else {
the_content('Read the rest of this entry »');
} ?>
-------------------
最好修改前备份一下,以防万一。
发表评论