Categories
bigcommerce blog Child theme cms wordpress wordpress

wordpress remove customize section – child theme

stupid like me want such change 😛

#bookmark #remove #customize #section #wordpress

function remove_customize_register() {
global $wp_customize;
$wp_customize->remove_section( 'colors' ); //Modify this line as needed
}

add_action( 'customize_register', 'remove_customize_register', 11 );