remove_control('call_action_btn_middle_text'); } add_action( 'customize_register', 'scelar_remove_parent_setting',99 ); /** * Import Options From Specia Theme * */ function scelar_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', 'scelar_parent_theme_options' );