特定分类文章的循环

Avatar of Chris Coyier
Chris Coyier
<?php query_posts('cat=5'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
   <?php the_content(); ?>
<?php endwhile; endif; ?>

例如,如果你要在页面上的主要循环之前运行的左侧边栏中使用此方法,请记住重置查询,否则它会影响主要循环。

<?php wp_reset_query(); ?>