循環是 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 來理解