Skip to content

Instantly share code, notes, and snippets.

@spencejs
Created March 23, 2013 04:51
Show Gist options
  • Save spencejs/5226500 to your computer and use it in GitHub Desktop.
Save spencejs/5226500 to your computer and use it in GitHub Desktop.
Get Post Thumbnail (Featured Image) Or Fall Back
<a href="<?php the_permalink(); ?>">
<?php
if ( has_post_thumbnail() ) {
echo the_post_thumbnail();// the current post has a thumbnail
} else { ?>
<img class="attachment-post-thumbnail" src="<?php bloginfo('template_url'); ?>/images/place_247.jpg" alt="Post">
<?php }
?> </a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment