Custom Header
Change header image
// Register Theme Features function custom_theme_features() { // Add theme support for Custom Header $header_args = array( 'default-image' => 'http://localhost/DIGITPAUL_Local/wp-content/uploads/2016/08/cropped-cropped-IMG_0004.jpg', 'width' => 1200, 'height' => 740, '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' => '', ); add_theme_support( 'custom-header', $header_args ); } add_action( 'after_setup_theme', 'custom_theme_features' );