Declare the `$uploaded_headers` and `$default_headers` properties for `WP_Customize_Header_Image_Control`.
See #30224. Built from https://develop.svn.wordpress.org/trunk@30172 git-svn-id: http://core.svn.wordpress.org/trunk@30172 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
73c8e4cf10
commit
303d01869c
|
@ -915,6 +915,8 @@ class WP_Customize_Background_Image_Control extends WP_Customize_Image_Control {
|
||||||
|
|
||||||
class WP_Customize_Header_Image_Control extends WP_Customize_Image_Control {
|
class WP_Customize_Header_Image_Control extends WP_Customize_Image_Control {
|
||||||
public $type = 'header';
|
public $type = 'header';
|
||||||
|
public $uploaded_headers;
|
||||||
|
public $default_headers;
|
||||||
|
|
||||||
public function __construct( $manager ) {
|
public function __construct( $manager ) {
|
||||||
parent::__construct( $manager, 'header_image', array(
|
parent::__construct( $manager, 'header_image', array(
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.1-alpha-30171';
|
$wp_version = '4.1-alpha-30172';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue