2011年11月9日 星期三

篩選文章分類並POST出該分類所有文章

//取得最新10篇並且依照分類名稱篩選 Get the last 10 posts in the special_cat category.
<?php query_posts('category_name=special_cat&posts_per_page=10'); ?>
<?php while (have_posts()) : the_post(); ?>
<!-- Do special_cat stuff... –>
<?php endwhile;?>

來源:
http://codex.wordpress.org/The_Loop

沒有留言:

張貼留言