Created
November 5, 2014 09:39
-
-
Save 0v3rth3d4wn/0e9bc24132091ba017a3 to your computer and use it in GitHub Desktop.
This file contains 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
<?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