Skip to content

Instantly share code, notes, and snippets.

@nirendra
Created November 27, 2013 23:24
Show Gist options
  • Save nirendra/7684828 to your computer and use it in GitHub Desktop.
Save nirendra/7684828 to your computer and use it in GitHub Desktop.
Get featured image based on id
function webspec_get_featured_img($id){
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $id), 'single-post-thumbnail' );
echo $image[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment