【问题标题】:How to output the thumbnail of the featured image Wordpress?如何输出特色图片 Wordpress 的缩略图?
【发布时间】:2012-04-02 17:34:01
【问题描述】:

我想在我的一个小部件中输出帖子的特色图片的缩略图?在 Wordpress 中,我怎样才能在循环中做到这一点。我使用的是 3.3.1 版

【问题讨论】:

    标签: image wordpress loops thumbnails featured


    【解决方案1】:

    你可以使用

    <?php the_post_thumbnail(); ?> 
    

    或者如果你只想要图像 src 而不是 wordpress 的所有 html 输出,使用这个:

    <?php echo get_the_post_thumbnail($page->ID, 'thumbnail'); ?>
    

    参考:

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

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

    【讨论】:

    • 缩略图应该看起来像这样 thumbname-150x150.jpg 而不是我用 html img 属性缩小了大图像,或者只是特色图像。
    猜你喜欢
    • 2014-09-28
    • 2011-03-11
    • 2015-02-02
    • 2016-11-21
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-03-22
    相关资源
    最近更新 更多