Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

head logo

// Register Theme Features
function custom_theme_features()  {

	// Add theme support for Custom Header
	$header_args = array(
		'default-image'          => '/Volumes/Extreme SSD/lesspressv2/app/public/wp-content/themes/lesspress_/assets/images/Modern-Brand-Name-Initials-Typography-Logo-160-×-80-px-150x80.png',
		'width'                  => 148,
		'height'                 => 148,
		'flex-width'             => true,
		'flex-height'            => true,
		'uploads'                => true,
		'random-default'         => false,
		'header-text'            => false,
		'default-text-color'     => '',
		'wp-head-callback'       => '',
		'admin-head-callback'    => '',
		'admin-preview-callback' => '',
		'video'                  => false,
		'video-active-callback'  => '',
	);
	add_theme_support( 'custom-header', $header_args );
}
add_action( 'after_setup_theme', 'custom_theme_features' );