@Ben,
如果你看循环的第132行。php在二十世纪十年代,你会发现一条条件语句,它告诉WordPress只显示类别档案中的\\u摘录。就在那之后
<?php else : ?>
是如何显示所有不在存档页、旁白类别或图库类别中的帖子。(asides和gallery类别以loop.php的开头为目标)
<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php else : ?>
<div class="entry-content">
<?php the_content( __( \'Continue reading <span class="meta-nav">→</span>\', \'twentyten\' ) ); ?>
<?php wp_link_pages( array( \'before\' => \'<div class="page-link">\' . __( \'Pages:\', \'twentyten\' ), \'after\' => \'</div>\' ) ); ?>
</div><!-- .entry-content -->
<?php endif; ?>
在循环类别中。php文件最简单的方法是复制并粘贴整个循环。php文件,并将上面的代码部分更改为:
<?php if ( is_search() ) : // Only display excerpts for archives and search. ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php else : ?>
<div class="entry-content">
<?php the_content( __( \'Continue reading <span class="meta-nav">→</span>\', \'twentyten\' ) ); ?>
<?php wp_link_pages( array( \'before\' => \'<div class="page-link">\' . __( \'Pages:\', \'twentyten\' ), \'after\' => \'</div>\' ) ); ?>
</div><!-- .entry-content -->
<?php endif; ?>
您会注意到,我们只删除了
is_archive
从条件语句so now中,类别存档将使用包含以下内容的else语句后的代码显示
the_content
而不是
the_excerpt
.