Skip to content

Instantly share code, notes, and snippets.

@diomededavid
Last active August 5, 2018 23:35
Show Gist options
  • Select an option

  • Save diomededavid/ea9d452cbad480ac520eb9016c6fa93e to your computer and use it in GitHub Desktop.

Select an option

Save diomededavid/ea9d452cbad480ac520eb9016c6fa93e to your computer and use it in GitHub Desktop.
Set featured image in css, so background image can be set without usin inline styles
<?php
/**
* Add or remove the css class if the featured image is set or not
*/
function custom_post_feature_img()
{
if ( has_post_thumbnail() ) {
echo 'custom-post-feature-img';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment