Last active
January 17, 2021 14:12
-
-
Save wpflames/fb6f5a367e64bb9dd7b05eac0f0f0247 to your computer and use it in GitHub Desktop.
Featured image
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
| <?php | |
| // ========================================================================= | |
| // CUSTOM IMAGE SIZE | |
| // ========================================================================= | |
| add_image_size( 'grid-img', 700, 368, true ); | |
| // ========================================================================= | |
| // FEATURED IMAGE INSIDE THE LOOP | |
| // ========================================================================= | |
| function featured_image_card(){ | |
| if ( has_post_thumbnail() ) { | |
| the_post_thumbnail( 'grid-img', array('class' => 'featured') ); | |
| } | |
| else { | |
| echo '<img class="featured" src="' . get_bloginfo( 'stylesheet_directory' ) | |
| . '/assets/images/placeholder.jpg" />'; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment