【发布时间】:2012-04-02 17:34:01
【问题描述】:
我想在我的一个小部件中输出帖子的特色图片的缩略图?在 Wordpress 中,我怎样才能在循环中做到这一点。我使用的是 3.3.1 版
【问题讨论】:
标签: image wordpress loops thumbnails featured
我想在我的一个小部件中输出帖子的特色图片的缩略图?在 Wordpress 中,我怎样才能在循环中做到这一点。我使用的是 3.3.1 版
【问题讨论】:
标签: image wordpress loops thumbnails featured
你可以使用
<?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
【讨论】: