Skip to content

Instantly share code, notes, and snippets.

@0v3rth3d4wn
Created November 5, 2014 09:39
Show Gist options
  • Save 0v3rth3d4wn/0e9bc24132091ba017a3 to your computer and use it in GitHub Desktop.
Save 0v3rth3d4wn/0e9bc24132091ba017a3 to your computer and use it in GitHub Desktop.
<?php if( has_post_thumbnail( get_the_id() ) ):?>
<?php echo get_the_post_thumbnail( get_the_id(), 'main-post-thumb', array( 'alt' => get_the_title()) );?>
<?php else:?>
<?php echo'<img src="'.get_stylesheet_directory_uri().'/assets/img/default_post_thumb_main.png" width="170" height="116" alt="'.get_the_title().'">';?>
<?php endif;?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment