* * @link https://developer.wordpress.org/themes/functionality/custom-headers/ * * @package atracium */ /** * Set up the WordPress core custom header feature. * * @uses atracium_header_style() */ function atracium_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'atracium_custom_header_args', array( 'default-text-color' => 'ffffff', 'default-image' => get_template_directory_uri() . '/img/atracium-theme-header-example.jpg', 'width' => 1700, 'height' => 1130, 'flex-height' => true, 'flex-width' => true, 'wp-head-callback' => 'atracium_header_style', ) ) ); } add_action( 'after_setup_theme', 'atracium_custom_header_setup' ); if ( ! function_exists( 'atracium_header_style' ) ) : /** * Styles the header image and text displayed on the blog. * * @see atracium_custom_header_setup(). */ function atracium_header_style() { $header_text_color = get_header_textcolor(); ?>