Docs: Add docblocks for WP_Customize_Header_Image_Control member variables.

Props subrataemfluence.
Fixes #44410.


Built from https://develop.svn.wordpress.org/trunk@44600


git-svn-id: http://core.svn.wordpress.org/trunk@44431 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Gary Pendergast 2019-01-15 05:54:48 +00:00
parent e4b25f1be2
commit 656d8edcaf
2 changed files with 21 additions and 1 deletions

View File

@ -15,8 +15,28 @@
* @see WP_Customize_Image_Control
*/
class WP_Customize_Header_Image_Control extends WP_Customize_Image_Control {
/**
* Customize control type.
*
* @since 4.2.0
* @var string
*/
public $type = 'header';
/**
* Uploaded header images.
*
* @since 3.9.0
* @var string
*/
public $uploaded_headers;
/**
* Default header images.
*
* @since 3.9.0
* @var string
*/
public $default_headers;
/**

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.1-beta1-44599';
$wp_version = '5.1-beta1-44600';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.