Docs: Add docblocks for WP_Customize_Header_Image_Control
member variables.
Props subrataemfluence. Fixes #44410. git-svn-id: https://develop.svn.wordpress.org/trunk@44600 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
0c9236ae42
commit
c1ae8b91e2
@ -15,8 +15,28 @@
|
|||||||
* @see WP_Customize_Image_Control
|
* @see 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 {
|
||||||
|
/**
|
||||||
|
* Customize control type.
|
||||||
|
*
|
||||||
|
* @since 4.2.0
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
public $type = 'header';
|
public $type = 'header';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Uploaded header images.
|
||||||
|
*
|
||||||
|
* @since 3.9.0
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
public $uploaded_headers;
|
public $uploaded_headers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default header images.
|
||||||
|
*
|
||||||
|
* @since 3.9.0
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
public $default_headers;
|
public $default_headers;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user