remove_section( 'upgrade_aneeq_premium' ); //Modify this line as needed $wp_customize->remove_section( 'aneeq_general_settings' ); //Modify this line as needed $wp_customize->remove_section( 'aneeq_header_option' ); //Modify this line as needed $wp_customize->remove_section( 'aneeq_slider_option' ); //Modify this line as needed $wp_customize->remove_section( 'aneeq_service_option' ); //Modify this line as needed $wp_customize->remove_section( 'aneeq_blog_option' ); //Modify this line as needed $wp_customize->remove_section( 'aneeq_woocommerce_settings' ); //Modify this line as needed $wp_customize->remove_section( 'aneeq_testimonial_settings' ); //Modify this line as needed $wp_customize->remove_section( 'aneeq_footer_settings' ); //Modify this line as needed $wp_customize->remove_section( 'aneeq' ); //Docs Comment //Fetch customizer files $dir = get_stylesheet_directory() . '/include/customizer/'; // Customizer files array $files = array( 'slider', 'service', 'funfact', 'portfolio', 'blog' ); //calling files foreach ( $files as $key ) { require_once( $dir . $key .'.php' ); } } add_action( 'customize_register', 'businessblogs_customize_register', 14 ); // END ENQUEUE PARENT ACTION