Skip to content

Instantly share code, notes, and snippets.

@lynt-smitka
Created August 11, 2021 14:57
Show Gist options
  • Save lynt-smitka/dbff21c36bbb16ebd9f36d7a5d51734b to your computer and use it in GitHub Desktop.
Save lynt-smitka/dbff21c36bbb16ebd9f36d7a5d51734b to your computer and use it in GitHub Desktop.
add_filter( 'document_title_parts', function( $title ) {
if ( is_home() || is_front_page() ) {
unset($title['tagline']);
}
return $title;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment