之前首页一直都是显示全篇文章,确实看起来有些难受,这里使用了一个方法魔改了一下主题,令其显示摘要:
在主题的content.php中找到这一段
<?php
/* translators: %s: Name of current post */
the_content( sprintf(
__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'twentyseventeen' ),
get_the_title()
) );
?>
将其注释掉。
改为:
<?php if(!is_single()) {
the_excerpt();
} else {
the_content(__('(more…)'));
}
?>
即可实现仅显示摘要。
不过可能更换/更新主题的时候要重新魔改。正在摸索更有效的方法。