Displaying Title And Tagline – mis-match in WP_Customizer_Manager
-
Hi,
while customizing ‘Display Site Title and Tagline’ I found the following code
in class_WP_Customizer_Manager.php:// Input type: checkbox.
// With custom value.
$this->add_control(
‘display_header_text’,
array(
‘settings’ => ‘header_textcolor’,
‘label’ => __( ‘Display Site Title and Tagline’ ),
‘section’ => ‘title_tagline’,
‘type’ => ‘checkbox’,
‘priority’ => 40,
)
);surely ‘header_textcolor’ isn’t meant to be there ?
is this control meant to be here?
(it is correctly conditionally added above this line)
clearly I don’t want to change this file –
so I removed the control before working with it myself – using:
$wp_customize->remove_control(‘display_header_text’);cheers
- The topic ‘Displaying Title And Tagline – mis-match in WP_Customizer_Manager’ is closed to new replies.