Skip to content

Instantly share code, notes, and snippets.

@slambert
Created February 28, 2015 20:20
Show Gist options
  • Save slambert/46f42bf4b1f68fc7b325 to your computer and use it in GitHub Desktop.
Save slambert/46f42bf4b1f68fc7b325 to your computer and use it in GitHub Desktop.
WordPress Thumbnail Function
// Thumbnail Function - this creates a default thumbnail if one is specified
function get_thumb ($post_ID){
$thumbargs = array(
'post_type' => 'attachment',
'numberposts' => 1,
'post_status' => null,
'post_parent' => $post_ID
);
$thumb = get_posts($thumbargs);
if ($thumb) {
return wp_get_attachment_image($thumb[0]->ID);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment