WordPress首页默认显示的是每篇文章的全部内容 ,发表文章的时候在首页面预览会显示文章的全部内容,很影响我们的阅读体验. 在wp-content\themes目录下,选择你自己安装模板,然后打开index.php,你会发现部分代码如下:
1 2 3 4 5 6 7 |
while ( have_posts() ) { the_post(); get_template_part( 'xxx', get_post_format() ); } |
index.php是调用xxx.php的文件用来输出文章的内容,你在模板目录下找到xxx.php,打开编辑它,找到这段代码:
1 |
the_content( __( 'Read more...', 'xxx' ) ); |
将该行代码注释掉,修改成:
1 2 3 4 5 6 7 8 9 |
if(!is_single()) { the_excerpt(); } else { the_content(__('(more…)')); } |
from:https://www.cnblogs.com/lionli/p/11944963.html
View Details