如何获得post thumbnail image src属性?

时间:2017-02-06 16:29:07

标签: wordpress wordpress-theming

如何获取帖子缩略图src属性? 我只想要src属性,而不是完整的图像标记。

the_post_thumbnail(); //give the full image code 

我该怎么办?

1 个答案:

答案 0 :(得分:2)

尝试使用:

get_the_post_thumbnail_url( $post,'post-thumbnail' );

用您想要的图像尺寸交换'缩略图后'。使用

get_the_post_thumbnail_url( $post,'full' );

如果您想要全尺寸图片。如果这有帮助,请告诉我。

相关问题