Skip to content

Instantly share code, notes, and snippets.

@johnmorris
Created December 24, 2013 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnmorris/8116213 to your computer and use it in GitHub Desktop.
Save johnmorris/8116213 to your computer and use it in GitHub Desktop.
Get the thumbnail source URL in WordPress
function wp_get_thumb_src($post = false, $size = 'thumbnail') {
if ( ! $post ) {
global $post;
}
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), $size );
$url = $thumb['0'];
return $url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment