В файле
class-wp-customize-manager.php.
Отключаться должно аналогично подключению, только вместо
add_
—
remove_
add_action('customize_register','my_customize_register');
function my_customize_register( $wp_customize ) {
$wp_customize->add_panel();
$wp_customize->get_panel();
$wp_customize->remove_panel();
$wp_customize->add_section();
$wp_customize->get_section();
$wp_customize->remove_section();
$wp_customize->add_setting();
$wp_customize->get_setting();
$wp_customize->remove_setting();
$wp_customize->add_control();
$wp_customize->get_control();
$wp_customize->remove_control();
}
Например:
function remove_control( $wp_customize ) {
$wp_customize->remove_control( 'site_icon' );
}
add_action( 'customize_register', 'remove_control', 20, 1 );