Wordpress 如何获取后期缩略图图像src属性?

Wordpress 如何获取后期缩略图图像src属性?,wordpress,wordpress-theming,Wordpress,Wordpress Theming,如何获取后期缩略图图像src属性?? 我只需要src属性,而不是完整的图像标记 the_post_thumbnail(); //give the full image code 我如何才能做到这一点???尝试使用以下方法: get_the_post_thumbnail_url( $post,'post-thumbnail' ); 将“张贴缩略图”与所需的图像大小交换。使用 get_the_post_thumbnail_url( $post,'full' ); 如果你想要全尺寸的图像。如果

如何获取后期缩略图图像src属性?? 我只需要src属性,而不是完整的图像标记

the_post_thumbnail(); //give the full image code 
我如何才能做到这一点???

尝试使用以下方法:

get_the_post_thumbnail_url( $post,'post-thumbnail' );
将“张贴缩略图”与所需的图像大小交换。使用

get_the_post_thumbnail_url( $post,'full' );
如果你想要全尺寸的图像。如果有帮助,请告诉我。

尝试使用以下方法:

get_the_post_thumbnail_url( $post,'post-thumbnail' );
将“张贴缩略图”与所需的图像大小交换。使用

get_the_post_thumbnail_url( $post,'full' );
如果你想要全尺寸的图像。让我知道这是否有用