In X Theme Pro header file all I see is this:
<?php // ============================================================================= // HEADER.PHP // ----------------------------------------------------------------------------- // The site header. // ============================================================================= do_action( 'cs_header' ); -------------------- What I'm Looking for is this: `<?php wp_title ... ?>`I want to remove that but I don’t see it. I read elsewhere that it should be in header.php.
I want to add this to the child functions:
add_theme_support( ‘title-tag’ ); // Enable automatic title tags
I know how to do that. I have a child theme functions.php.
But, I need to remove that line:
<title><?php wp_title ... ?></title>
But, I don’t see it anywhere in the theme files.
Thank you