I have to get the image source from the code below.
$thumburl = get_the_post_thumbnail($post->ID);
Here I'm getting
<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 ?
This is what you want, more concise:
https://developer.wordpress.org/reference/functions/get_the_post_thumbnail_url/
You can get the url for any thumbnail size, so its quite a useful function.
there sir,