HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.33
System: Linux li317-225.members.linode.com 3.10.0-1062.12.1.el7.x86_64 #1 SMP Tue Feb 4 23:02:59 UTC 2020 x86_64
User: apache (48)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /var/www/kosmicfarmswordpress/public/wp-content/themes/organic-farm/inc/custom-header.php
<?php
/**
 * Custom header implementation
 */

function organic_farm_custom_header_setup() {
	add_theme_support( 'custom-header', apply_filters( 'organic_farm_custom_header_args', array(
		'default-text-color'     => 'fff',
		'header-text' 			 =>	false,
		'width'                  => 1200,
		'height'                 => 150,
		'wp-head-callback'       => 'organic_farm_header_style',
	) ) );
}

add_action( 'after_setup_theme', 'organic_farm_custom_header_setup' );

if ( ! function_exists( 'organic_farm_header_style' ) ) :
/**
 * Styles the header image and text displayed on the blog
 *
 * @see organic_farm_custom_header_setup().
 */
add_action( 'wp_enqueue_scripts', 'organic_farm_header_style' );
function organic_farm_header_style() {
	if ( get_header_image() ) :
	$custom_css = "
        #header{
			background-image:url('".esc_url(get_header_image())."') !important;
			background-position: center top;
		}";
	   	wp_add_inline_style( 'organic-farm-style', $custom_css );
	endif;
}
endif;