Skip to content

Instantly share code, notes, and snippets.

@ideag
Created November 18, 2015 17:32
Show Gist options
  • Save ideag/dadbe481d111f1cddb68 to your computer and use it in GitHub Desktop.
Save ideag/dadbe481d111f1cddb68 to your computer and use it in GitHub Desktop.
function get_thumbnail_url( $size='thumbnail' ) {
$image_id = get_post_thumbnail_id( get_the_ID() );
$thumb = wp_get_attachment_image_src( $image_id, 'thumbnail_size' );
$url = $thumb['0'];
return $url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment