这个方法我们可以在一些CMS主题中经常看到。像wopus的首页;它在首页调用了很多分类。然后把分类的第一条和其他的标题区分出来;我们先来看下默认的主循环。
<?php
< ?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
这里是循环的内容
< ?php endwhile; else: ?>
<p>< ?php _e('Sorry, no posts matched your criteria.'); ?></p>
< ?php endif; ?>
?>
< ?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
这里是循环的内容
< ?php endwhile; else: ?>
<p>< ?php _e('Sorry, no posts matched your criteria.'); ?></p>
< ?php endif; ?>
?>