按页面ID获取特色图片URL

时间:2012-12-22 作者:Sam Hanson

我正在使用WordPress 3.4.1。我需要显示页面的特色图像。如何通过特定的页面ID获取特色图像URL。有什么帮助吗?

2 个回复
最合适的回答,由SO网友:Sisir 整理而成

你试过什么吗?分享你的尝试总是很有帮助的。

$url = wp_get_attachment_url( get_post_thumbnail_id($post_id) );
或者,如果要按图像大小获取图像。

$src = wp_get_attachment_image_src( get_post_thumbnail_id($post_id), \'thumbnail_size\' );
$url = $src[0];

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

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

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

SO网友:Christine Cooper

从Wordpress 4.4.0开始,我们可以使用get_the_post_thumbnail_url():

$url = get_the_post_thumbnail_url( $post_id, \'thumbnail\' );

结束

相关推荐