2012-01-24 35 views

回答

1

嗯,我不認爲你需要爲這個插件,很簡單:

<?php 

query_posts('category_name=yourcategory&orderby=date'); 


while (have_posts()) : the_post(); 

     the_title(); 
     the_post_thumbnail(); 

endwhile; 


wp_reset_query(); 

?> 

替換「yourcategory」與你的類別:)

見該訊息有關的縮略圖here更多信息。

+0

我得到了我正在尋找使用插件WP分類帖子列表微件 –