$args = array(
'showposts' => 10,//显示数量
'cat' =>1 //这个数值是你分类的ID
'orderby' => 'date' //按照日期排序
);
query_posts($args);
while (have_posts()) :the_post();
>
.
$args = array(
'showposts' => 10,//显示数量
'cat' =>1 //这个数值是你分类的ID
'orderby' => 'date' //按照日期排序
);
query_posts($args);
while (have_posts()) :the_post();
>
.