换个了新主题,但主页文章全部显示了出来,而不是只显示部分摘要。严重影响阅读体验,特别是长文章。
解决方法:
在wp-content\themes目录下,选择你自己安装模板,然后打开index.php,你会发现部分代码如下:
while ( have_posts() ) {
the_post();
get_template_part( ‘xxx’, get_post_format() );
}
index.php是调用xxx.php的文件用来输出文章的内容,你在模板目录下找到xxx.php,打开编辑它,找到这段代码:
the_content( xxxxxx );
修改成:
if(!is_single()) {
the_excerpt();
} else {
the_content(xxxxxx);
}