2011-02-14 70 views
0

我想顯示來自所有類別的最新10篇文章。我該怎麼做?目前顯示來自特色類別的帖子我如何顯示wordpress中最新的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(), 
    );?> 

回答

1

如何讀documentation?這將暗示

query_posts('posts_per_page=10'); 

這是用於版本2.1和以上;對於以下版本,您可以使用

query_posts('showposts=10'); 
相關問題