diff --git a/src/wp-includes/customize/class-wp-customize-header-image-control.php b/src/wp-includes/customize/class-wp-customize-header-image-control.php index ae7eac7d8c..52641874f9 100644 --- a/src/wp-includes/customize/class-wp-customize-header-image-control.php +++ b/src/wp-includes/customize/class-wp-customize-header-image-control.php @@ -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; /**