$args = array( 'showposts' => 10, //显示数量 'cat' =>1 //这个数值是你分类的ID 'orderby' => 'date' //按照日期排序 ); query_posts($args); while (have_posts()) : the_post(); ?>......
一般使用query_posts();来调用文章分类都会按照发布顺序来排序的哦。
不仅文章选择文章分类分类