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?
source share