我正在尝试展示所有类别的最新10篇帖子。我该怎么做?目前它显示来自特色类别的帖子
<?php
query_posts('category_name=featured&showposts=1');
while(have_posts()):the_post();
$attrs = array(
'src' => $src,
'class' => "",
'alt' => get_the_title(),
'title' => get_the_title(),
);?>
答案 0 :(得分:1)
阅读documentation怎么样?这表明
query_posts( 'posts_per_page=10' );
这适用于2.1及更高版本;对于以下版本,您将使用
query_posts( 'showposts=10' );