Created
June 9, 2013 22:01
-
-
Save xafarali/5745429 to your computer and use it in GitHub Desktop.
Get Thumbnail URL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* GET THUMBNAIL URL */ | |
function get_image_url(){ | |
$image_id = get_post_thumbnail_id(); | |
$image_url = wp_get_attachment_image_src($image_id,'large'); | |
$image_url = $image_url[0]; | |
echo $image_url; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment