How do I remove a customiser option from a parent theme in a child theme?
From the documentation: To add, remove, or modify any Customizer object, and to access the Customizer Manager, use the customize_register hook: function themeslug_customize_register( $wp_customize ) { // Do stuff with $wp_customize, the WP_Customize_Manager object. } add_action( ‘customize_register’, ‘themeslug_customize_register’ ); The Customizer Manager provides add_, get_, and remove_ methods for each Customizer object type; each works … Read more