Skip to content

Instantly share code, notes, and snippets.

@wpflames
Last active January 17, 2021 14:12
Show Gist options
  • Select an option

  • Save wpflames/fb6f5a367e64bb9dd7b05eac0f0f0247 to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/fb6f5a367e64bb9dd7b05eac0f0f0247 to your computer and use it in GitHub Desktop.
Featured image
<?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