false, 'width' => 1200, 'height' => 300, 'flex-width' => true, 'flex-height' => true, 'wp-head-callback' => 'anime_stream_header_style', ) ) ); } add_action( 'after_setup_theme', 'anime_stream_custom_header_setup' ); if ( ! function_exists( 'anime_stream_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see anime_stream_custom_header_setup(). */ add_action( 'wp_enqueue_scripts', 'anime_stream_header_style' ); function anime_stream_header_style() { $anime_stream_header_image = get_header_image() ? get_header_image() : get_template_directory_uri() . '/assets/images/header-img.png'; $anime_stream_custom_css = " .box-image .single-page-img{ background-image: url('" . esc_url($anime_stream_header_image) . "'); background-repeat: no-repeat; background-position: center center; background-size: cover !important; height: 300px; }"; wp_add_inline_style( 'anime-stream-basic-style', $anime_stream_custom_css ); } endif;