他们实际上是在做一个循环,这里有一个例子来展示类似的结构。
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="article">
<div class="left">
<?php the_post_thumbnail( $size, $attr ); ?>
<?php get_the_category(); ?>
</div><!-- end left side -->
<div class="right">
<?php the_excerpt(); ?>
</div> <!-- end right side-->
</div>
<?php endwhile; else: endif; ?>