Skip to content

Instantly share code, notes, and snippets.

@alisonmf
Created January 26, 2015 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alisonmf/20381adafabab1f68c4c to your computer and use it in GitHub Desktop.
Save alisonmf/20381adafabab1f68c4c to your computer and use it in GitHub Desktop.
the_post_thumbnail or Featured Image in WordPress
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail();
} else {
echo '<img src="';
echo get_stylesheet_directory_uri();
echo '/img/page-banner.jpg" />';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment