【发布时间】:2017-02-07 00:37:54
【问题描述】:
如何获取帖子缩略图的 src 属性? 我只想要 src 属性,而不是完整的图像标签。
the_post_thumbnail(); //give the full image code
我该怎么做??
【问题讨论】:
标签: wordpress wordpress-theming
如何获取帖子缩略图的 src 属性? 我只想要 src 属性,而不是完整的图像标签。
the_post_thumbnail(); //give the full image code
我该怎么做??
【问题讨论】:
标签: wordpress wordpress-theming
试试这个:
get_the_post_thumbnail_url( $post,'post-thumbnail' );
用您想要的图像尺寸交换“后缩略图”。使用
get_the_post_thumbnail_url( $post,'full' );
如果您想要完整尺寸的图像。让我知道这是否有帮助。
【讨论】: