我想在我的一个小工具中输出帖子特色图片的缩略图?我怎么能在循环中,在Wordpress中做到这一点。我正在使用3.3.1版本
答案 0 :(得分: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