remove_control('cta_content_head'); $wp_customize->remove_control('call_action_page'); $wp_customize->remove_control('call_action_review_ttl'); $wp_customize->remove_control('cta_btn_first_head'); $wp_customize->remove_control('call_action_button_label'); $wp_customize->remove_control('call_action_button_link'); $wp_customize->remove_control('call_action_button_target'); $wp_customize->remove_control('cta_btn_second_head'); $wp_customize->remove_control('call_action_btn_middle_text'); $wp_customize->remove_control('call_action_button_label2'); $wp_customize->remove_control('call_action_button_link2'); $wp_customize->remove_control('call_action_background_setting'); $wp_customize->remove_control('cta_bg_head'); } add_action( 'customize_register', 'anavo_remove_parent_setting',99 ); /** * Import Options From Specia Theme * */ function anavo_parent_theme_options() { $specia_mods = get_option( 'theme_mods_specia' ); if ( ! empty( $specia_mods ) ) { foreach ( $specia_mods as $specia_mod_k => $specia_mod_v ) { set_theme_mod( $specia_mod_k, $specia_mod_v ); } } } add_action( 'after_switch_theme', 'anavo_parent_theme_options' );