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'); } add_action( 'customize_register', 'arkbiz_remove_parent_setting',99 ); /** * Import Options From Specia Theme * */ function arkbiz_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', 'arkbiz_parent_theme_options' );