'', 'default-text-color' => 'ffffff', 'width' => 2000, 'height' => 200, 'flex-height' => true, 'wp-head-callback' => 'avril_header_style', ) ) ); } add_action( 'after_setup_theme', 'avitech_setup' ); /** * Called all the Customize file. */ require( get_stylesheet_directory() . '/inc/customize/avitech-premium.php'); /** * Import Options From Parent Theme * */ function avitech_parent_theme_options() { $avril_mods = get_option( 'theme_mods_avril' ); if ( ! empty( $avril_mods ) ) { foreach ( $avril_mods as $avril_mod_k => $avril_mod_v ) { set_theme_mod( $avril_mod_k, $avril_mod_v ); } } } add_action( 'after_switch_theme', 'avitech_parent_theme_options' );