Snippet: Disable Page Header Title on ALL Pages
Important: You can now do this via Appearance > Customize > General Theme Settings > Page >
Page Header Title
add_filter( 'totaltheme/page/header/is_enabled', function( $bool ) {
if ( is_page() ) {
$bool = false; // this will allow meta options to work still
}
return $bool;
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend WPCode)