Skip to content

Instantly share code, notes, and snippets.

@leogono
Created October 11, 2013 19:17
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 leogono/6940476 to your computer and use it in GitHub Desktop.
Save leogono/6940476 to your computer and use it in GitHub Desktop.
WordPress post thumbnail with class and fallbackto placehold.it
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail('posts-thumb', array('class' => 'img-responsive'));
}
else {
echo '<img src="http://placehold.it/300x320&amp;text=No+featured+image" class="img-responsive" alt="">';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment