wordpress怎么获取文章特色图片缩略图的源地址

wordpress通过the_post_thumbnail()获取是带img标签的图片,如果我们想只获取图片的地址,该怎么做呢?
可以通过下面这段代码来获取:

<?php
$img_src = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), "Full");
echo $img_src[0];
?>

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: