'', 'default-text-color' => 'ffffff', 'width' => 2000, 'height' => 200, 'flex-height' => true, 'wp-head-callback' => 'aravalli_header_style', ) ) ); } add_action( 'after_setup_theme', 'arbuda_setup' ); /** * Called all the Customize file. */ require( get_stylesheet_directory() . '/inc/customize/arbuda-premium.php'); /** * Import Options From Parent Theme * */ function arbuda_parent_theme_options() { $aravalli_mods = get_option( 'theme_mods_aravalli' ); if ( ! empty( $aravalli_mods ) ) { foreach ( $aravalli_mods as $aravalli_mod_k => $aravalli_mod_v ) { set_theme_mod( $aravalli_mod_k, $aravalli_mod_v ); } } } add_action( 'after_switch_theme', 'arbuda_parent_theme_options' );