Skip to content

Instantly share code, notes, and snippets.

@raaar
Created August 2, 2012 11:41
Show Gist options
  • Save raaar/3236470 to your computer and use it in GitHub Desktop.
Save raaar/3236470 to your computer and use it in GitHub Desktop.
WORDPRESS: Get post thumbnail
<?php
// check if the post has a Post Thumbnail assigned to it.
if ( has_post_thumbnail() ) {
the_post_thumbnail('thumbnail');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment