Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
themes
/
intedgroup-universities
/
inc
:
custom-header.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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' );