Make WordPress Core

Changeset 44600


Ignore:
Timestamp:
01/15/2019 05:53:35 AM (6 years ago)
Author:
pento
Message:

Docs: Add docblocks for WP_Customize_Header_Image_Control member variables.

Props subrataemfluence.
Fixes #44410.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/customize/class-wp-customize-header-image-control.php

    r43596 r44600  
    1616 */
    1717class WP_Customize_Header_Image_Control extends WP_Customize_Image_Control {
     18    /**
     19     * Customize control type.
     20     *
     21     * @since 4.2.0
     22     * @var string
     23     */
    1824    public $type = 'header';
     25
     26    /**
     27     * Uploaded header images.
     28     *
     29     * @since 3.9.0
     30     * @var string
     31     */
    1932    public $uploaded_headers;
     33
     34    /**
     35     * Default header images.
     36     *
     37     * @since 3.9.0
     38     * @var string
     39     */
    2040    public $default_headers;
    2141
Note: See TracChangeset for help on using the changeset viewer.