我已经设置了我的 Wordpress,将wordpress 特色图片缩略图添加 到主页上的所有帖子中。
如何使代码跳过将wordpress 特色图片缩略图添加到第一篇文章 [the_content() ~ 在下面的代码中] 并且只将它们添加到wordpress 特色图片缩略图中的其他帖子 [the_excerpt() ~ 在下面的代码中]?
我在 content.php 中放入的代码使其将wordpress 特色图片缩略图放在主页上。链接在这里
<?php if ( is_search() | is_home() ) : // Edit this to show excerpts in other areas of the theme?>
<div class="entry-summary">
<!-- This adds the post thumbnail/featured image -->
<div class="excerpt-thumb"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
<?php the_post_thumbnail('excerpt-thumbnail', 'class=alignleft'); ?></a></div>
<?php if($wp_query->current_post == 0 && !is_paged()) { the_content(); } else { the_excerpt(); } ?>
</div><!-- .entry-summary -->
<?php else : ?>
<div class="entry-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
<?php endif; ?>