日期:2014-09-21 阅读:1481
dmandwp系统 - wordpress系统和DM系统区块建站>>
循环是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();
?>
------------------