Created
March 23, 2013 04:51
-
-
Save spencejs/5226500 to your computer and use it in GitHub Desktop.
Get Post Thumbnail (Featured Image) Or Fall Back
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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