如何使用get_post_meta在wordpress中获取缩略图

时间:2016-10-03 17:15:50

标签: php wordpress thumbnails

我有一个wordpress网站,我正在尝试获取帖子的缩略图(又名特色图片)。我不能使用下面的函数,因为我没有因为布局原因而处于循环中。

the_post_thumbnail_url( ) 

我只是想知道我是否可以通过此功能获取帖子的缩略图。

$thumb_1 = get_post_meta( '40', 'thumb', true );      //40 is the post_id

我几乎可以检索所有其他自定义字段但是,检索拇指似乎不起作用。有谁知道缩略图的“关键”是什么?

1 个答案:

答案 0 :(得分:3)

也许更好的方法是使用函数get_the_post_thumbnail_url(),它允许你传入一个帖子ID(并且不需要在循环中:

https://developer.wordpress.org/reference/functions/get_the_post_thumbnail_url/

所以$thumb = get_the_post_thumbnail_url(40);