以我所用的2021主题模板为例,找到所用主题文件夹中的index.php文件,打开,找到类似如下的代码:
<?php get_template_part( 'content', get_post_format() ); ?>
其中的content
就是文章显示时调用的模板,找到content.php
文件,打开,找到类似如下的代码:
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?>
将其注释掉:
<?php // the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?>
改成下述代码:
<?php
if(!is_single()) {the_excerpt(); } else {the_content(__('(more…)')); };
// only display abstract
?>