2012-01-24 37 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分类帖子列表微件 –