Skip to content

Instantly share code, notes, and snippets.

@thecodepoetry
Created April 26, 2021 17:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thecodepoetry/c21e52df11f775f39029691d13c79588 to your computer and use it in GitHub Desktop.
Save thecodepoetry/c21e52df11f775f39029691d13c79588 to your computer and use it in GitHub Desktop.
Disable page title CPT
add_action( 'get_header', 'dt_disable_header', 10 );
function dt_disable_header() {
$config = Presscore_Config::get_instance();
if( is_singular( 'cpt_name' ) ) {
$config->set( 'header_title', 'disabled' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment