如何在《21世纪11》主题中增加循环摘录?

时间:2013-06-15 作者:Huzaifa Ahmed

这是我的循环代码,位于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">&rarr;</span>\', \'twentytwelve\' ) ); ?>
        <?php wp_link_pages( array( \'before\' => \'<div class="page-links">\' . __( \'Pages:\', \'twentytwelve\' ), \'after\' => \'</div>\' ) ); ?>
    </div><!-- .entry-content -->

2 个回复
最合适的回答,由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 ?>

SO网友:JMau

只需打开文件content.php 在主题中。你可以read this.

结束

相关推荐

当调用似乎相同时,为什么对_excerpt的调用的输出是不同的?

好的,我被要求修复一个有点奇怪的网站上的问题。索引页(template magazine.php)here, 有以下代码位:<?php get_template_part(\'loop\'); ?> 要生成最新新闻的列表/网格,这里一切正常,每个条目都由时间、地点和事件描述片段表示。单击一个类别时,称为归档。phpexample 和存档。php具有相同的调用:<?php get_template_part(\'loop\'); ?> 构建事件列表/网格。但现在输