'', 'default-text-color' => '121212', 'width' => 1920, 'height' => 200, 'flex-height' => true, 'wp-head-callback' => 'softme_header_style', ) ) ); } add_action( 'after_setup_theme', 'cozysoft_custom_header_setup' ); /** * Import Options From Parent Theme * */ function cozysoft_parent_theme_options() { $softme_mods = get_option( 'theme_mods_softme' ); if ( ! empty( $softme_mods ) ) { foreach ( $softme_mods as $softme_mod_k => $softme_mod_v ) { set_theme_mod( $softme_mod_k, $softme_mod_v ); } } } add_action( 'after_switch_theme', 'cozysoft_parent_theme_options' );