Skip to content

Instantly share code, notes, and snippets.

@generatepress
Created February 14, 2019 22:36
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save generatepress/9fe556128433b11114b489406fc8dee4 to your computer and use it in GitHub Desktop.
Save generatepress/9fe556128433b11114b489406fc8dee4 to your computer and use it in GitHub Desktop.
Disable the Header Element if there isn't a featured image.
add_filter( 'generate_header_element_display', function( $display ) {
if ( ! has_post_thumbnail() ) {
return false;
}
return $display;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment