'', 'default-text-color' => 'CE397D', 'width' => 2000, 'height' => 200, 'flex-height' => true, 'wp-head-callback' => 'cozipress_header_style', ) ) ); } add_action( 'after_setup_theme', 'sipri_custom_header_setup' ); /** * Import Options From Parent Theme * */ function sipri_parent_theme_options() { $cozipress_mods = get_option( 'theme_mods_cozipress' ); if ( ! empty( $cozipress_mods ) ) { foreach ( $cozipress_mods as $cozipress_mod_k => $cozipress_mod_v ) { set_theme_mod( $cozipress_mod_k, $cozipress_mod_v ); } } } add_action( 'after_switch_theme', 'sipri_parent_theme_options' ); require( get_stylesheet_directory() . '/inc/customizer/customizer-pro/class-customize.php');