我正在寻找一个wordpress插件,从某些类别的最近帖子中获取缩略图,并以小部件的形式显示缩略图和帖子标题。
答案 0 :(得分:1)
嗯,我认为你不需要插件,很简单:
<?php
query_posts('category_name=yourcategory&orderby=date');
while ( have_posts() ) : the_post();
the_title();
the_post_thumbnail();
endwhile;
wp_reset_query();
?>
替换&#39; yourcategory&#39;与您的类别:)
查看有关帖子缩略图here的更多信息。