如何获取帖子缩略图src属性? 我只想要src属性,而不是完整的图像标记。
the_post_thumbnail(); //give the full image code
我该怎么办?
答案 0 :(得分:2)
尝试使用:
get_the_post_thumbnail_url( $post,'post-thumbnail' );
用您想要的图像尺寸交换'缩略图后'。使用
get_the_post_thumbnail_url( $post,'full' );
如果您想要全尺寸图片。如果这有帮助,请告诉我。