File "custom-header.php"

Full Path: /home/dcqnetm/intuns/wp-content/themes/intedgroup-universities/inc/custom-header.php
File size: 731 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Sample implementation of the Custom Header feature.
 *
 * @link http://codex.wordpress.org/Custom_Headers
 *
 * @package Education_Hub
 */

/**
 * Set up the WordPress core custom header feature.
 *
 * @uses education_hub_header_style()
 */
function education_hub_custom_header_setup() {
	add_theme_support( 'custom-header', apply_filters( 'education_hub_custom_header_args', array(
		'default-image'          => '',
		'default-text-color'     => '666666',
		'header-text'            => false,
		'width'                  => 1920,
		'height'                 => 180,
		'flex-height'            => true,
		'flex-width'            => true,
	) ) );
}
add_action( 'after_setup_theme', 'education_hub_custom_header_setup' );