迴圈是 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 來理解