Get the image source from get_the_post_thumbnail ($ post-> ID);

I need to get the image source from the code below.

$thumburl = get_the_post_thumbnail($post->ID); 

Here i get

 <img width="325" height="202" src="http://localhost/TantraProjects/Border-fall/Repo/WebApp/wp-content/uploads/2012/12/film.png" class="attachment-post-thumbnail wp-post-image" alt="film" title="film"> 

I want to get this part.

 "http://localhost/TantraProjects/Border-fall/Repo/WebApp/wp-content/uploads/2012/12/film.png" 

How can I get the source code?

+6
source share
3 answers
 $post_thumbnail_id = get_post_thumbnail_id($post->ID); $post_thumbnail_url = wp_get_attachment_url( $post_thumbnail_id ); 
+24
source

This is what you want more concise:

 get_the_post_thumbnail_url($post->ID, $size); 

https://developer.wordpress.org/reference/functions/get_the_post_thumbnail_url/

You can get the URL for any thumbnail size, so its a pretty useful feature.

0
source

sir,

 $post_thumbnail_url = wp_get_attachment_thumb_url($post->ID); 
-2
source

All Articles