循环是 WordPress 里一个重要的概念,  循环一般用在分类列表里,输出多个文章。

http://codex.WordPress.org/The_Loop_in_Action 

简单的形式如:

<?php
get_header();
if (have_posts()) :
   while (have_posts()) :
      the_post();
         the_content();
   endwhile;
endif;
get_sidebar();
get_footer();
?>

------------------

可以结合 WordPress 的查询 query_posts , wp_query , get_posts 来理解