【问题标题】:Recent post thumbnail widget for WordpressWordpress 的最新帖子缩略图小部件
【发布时间】:2012-01-25 16:30:50
【问题描述】:

我正在寻找一个 wordpress 插件,它可以从某个类别的最近帖子中获取缩略图,并以小部件的形式显示缩略图以及帖子标题。

【问题讨论】:

    标签: wordpress


    【解决方案1】:

    嗯,我认为你不需要插件,很简单:

    <?php 
    
    query_posts('category_name=yourcategory&orderby=date'); 
    
    
    while ( have_posts() ) : the_post();
    
            the_title();
            the_post_thumbnail();
    
    endwhile;
    
    
    wp_reset_query();
    
    ?>
    

    用您的类别替换“您的类别”:)

    查看有关帖子缩略图here的更多信息。

    【讨论】:

    • 我得到了我正在寻找的使用插件 WP Category Post List Widget
    猜你喜欢
    • 1970-01-01
    • 2011-03-15
    • 1970-01-01
    • 2015-05-25
    • 1970-01-01
    • 2017-08-25
    • 1970-01-01
    • 2013-07-17
    • 2011-09-04
    相关资源
    最近更新 更多