diff --git a/wp-admin/custom-header.php b/wp-admin/custom-header.php index 9822c9ba84..5cc64ef7bf 100644 --- a/wp-admin/custom-header.php +++ b/wp-admin/custom-header.php @@ -639,7 +639,7 @@ class Custom_Image_Header { diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index c701364149..6e8faf2a8d 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -3439,12 +3439,11 @@ final class WP_Customize_Manager { ) ); $this->add_setting( new WP_Customize_Filter_Setting( $this, 'header_image', array( - 'default' => get_theme_support( 'custom-header', 'default-image' ), + 'default' => sprintf( get_theme_support( 'custom-header', 'default-image' ), get_template_directory_uri(), get_stylesheet_directory_uri() ), 'theme_supports' => 'custom-header', ) ) ); $this->add_setting( new WP_Customize_Header_Image_Setting( $this, 'header_image_data', array( - // 'default' => get_theme_support( 'custom-header', 'default-image' ), 'theme_supports' => 'custom-header', ) ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 6281ad421e..2f2effccf3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-beta1-39122'; +$wp_version = '4.7-beta1-39123'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.