Skip to content

Instantly share code, notes, and snippets.

@ihorvorotnov
Forked from xafarali/get_thumbnail_url.php
Last active August 29, 2015 14:23
Show Gist options
  • Save ihorvorotnov/0ad13b066b7e3b24f95c to your computer and use it in GitHub Desktop.
Save ihorvorotnov/0ad13b066b7e3b24f95c to your computer and use it in GitHub Desktop.
/**
* Get post thumbnail url
*/
function get_image_url(){
$image_id = get_post_thumbnail_id();
$image_url = wp_get_attachment_image_src( $image_id, 'full', false );
$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