如何让wordpress博客系统首页文章呈现摘要呢?
在wp-content/themes/自己的主题/index.php
找到<?php the_content(__('Read more...', 'inove')); ?>这一行,将其修改为以下代码:
<?php if(is_category() || is_archive() || is_home() ) {
the_excerpt();
} else {
the_content(’Read the rest of this entry »’);
} ?>
<div class=”details”><div class=”inside”><?php comments_popup_link(’No Comments’, ‘1 Comment’, ‘% Comments’); ?> so far | <a href=”<?php the_permalink() ?>”>Read On »</a></div></div>
小结:使用以上方法后,这时,你的WordPress首页就显示为摘要信息而不是全文信息了。浏览加载减轻.
如果你想分类页和存档页也要类似效果,打开主题archive.php文件(也可能是其他文件,视主题不同而不同),用上面的方法修改即可。
3 comments
@丕子
我是修改文件,做到首页缩略
@丕子
我是修改文件,做到首页缩略
呵呵 我都用more 标签 几乎全部都是