在创建child theme 2011年,收到content.php 从“二十一”主题到“你的孩子”主题进行编辑;
查找(第35行):
<?php if ( is_search() ) : // Only display Excerpts for Search ?>
更改为:
<?php if ( is_search() || is_paged() || $wp_query->current_post > 0 ) : // Only display Excerpts for Search, paginated pages, or any other then the first post ?>
然后查找此部分:
<div class="entry-content">
<?php the_content( __( \'Continue reading <span class="meta-nav">→</span>\', \'twentyeleven\' ) ); ?>
并更改为:
<div class="entry-content">
<?php global $more; if( $wp_query->current_post == 0 && !is_paged() ) $more = 1; ?>
<?php the_content( __( \'Continue reading <span class="meta-nav">→</span>\', \'twentyeleven\' ) ); ?>