2010-07-11 81 views
0

我需要編寫什麼php代碼才能顯示我的wordpress博客上每個類別的最後5篇博文?每個類別的最新5篇文章

我只想包括博客文章的標題,作者的日期和名稱(沒有來自博客文章的圖像)。

我想要做的正是在這個主題,名稱的最新帖子在XXXXX類別中的 http://sponsoredwp.info/brightness/

由於下一個例子!

回答

0

首先要看一看的get_categories功能:

http://codex.wordpress.org/Function_Reference/get_categories

那麼你應該看看get_posts功能:

http://codex.wordpress.org/Template_Tags/get_posts

一個小例子:

$args = array('orderby' => 'name','order' => 'DESC'); 
foreach(get_categories($args) as $category) 
{ 
    //Here you want to print out a header for your category 

    $my_query = new WP_Query('category_id='.$category->id.'&showposts=1'); 
    while($my_query->have_posts()): 
     $my_query->the_post(); 
     //Here you want to use the functions like the_title() and the_permlink() 
     //So you can itterate you results 
    endwhile; 
} 
相關問題