这是我的循环代码,位于index.php
文件我用的是“二十一”主题。
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( \'content\', get_post_format() ); ?>
<?php endwhile; ?>
<?php twentytwelve_content_nav( \'nav-below\' ); ?>
我应该在哪里添加
the_excerpt()
或者这里面有什么摘录代码?
我的内容中的内容代码。php
<div class="entry-content">
<?php the_content( __( \'Continue reading <span class="meta-nav">→</span>\', \'twentytwelve\' ) ); ?>
<?php wp_link_pages( array( \'before\' => \'<div class="page-links">\' . __( \'Pages:\', \'twentytwelve\' ), \'after\' => \'</div>\' ) ); ?>
</div><!-- .entry-content -->
最合适的回答,由SO网友:Michael 整理而成
在中,211已经使用了条件语句content.php 要在搜索结果中显示摘录,请执行以下操作-
<?php if ( is_search() ) : // Only display Excerpts for Search ?
编辑此条件以包括要显示摘录的其他模板;
示例:
<?php if ( is_search() || is_home() || is_archive() ) : // Only display Excerpts for Search, Posts Page and Archives ?>