wordpress首页不显示全文内容的方法

以我所用的2021主题模板为例,找到所用主题文件夹中的index.php文件,打开,找到类似如下的代码:

<?php get_template_part( 'content', get_post_format() ); ?>

其中的content就是文章显示时调用的模板,找到content.php文件,打开,找到类似如下的代码:

<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?> 

将其注释掉:

<?php // the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>

改成下述代码:

<?php 
	if(!is_single()) {the_excerpt(); } else {the_content(__('(more…)')); }; 
	// only display abstract 
?>