Docs: Add missing documentation for some Customize class properties:

* `WP_Customize_Background_Image_Control::$type`
* `WP_Customize_Background_Image_Setting::$id`
* `WP_Customize_Header_Image_Setting::$id`

Follow-up to [21037], [21053], [30885].

Props iamjaydip.
See #55646.
Built from https://develop.svn.wordpress.org/trunk@53411


git-svn-id: http://core.svn.wordpress.org/trunk@53000 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2022-05-18 15:24:14 +00:00
parent d4f6347b94
commit 6d0b0d9a4b
5 changed files with 23 additions and 1 deletions

View File

@ -15,6 +15,13 @@
* @see WP_Customize_Image_Control * @see WP_Customize_Image_Control
*/ */
class WP_Customize_Background_Image_Control extends WP_Customize_Image_Control { class WP_Customize_Background_Image_Control extends WP_Customize_Image_Control {
/**
* Customize control type.
*
* @since 4.1.0
* @var string
*/
public $type = 'background'; public $type = 'background';
/** /**

View File

@ -15,6 +15,13 @@
* @see WP_Customize_Setting * @see WP_Customize_Setting
*/ */
final class WP_Customize_Background_Image_Setting extends WP_Customize_Setting { final class WP_Customize_Background_Image_Setting extends WP_Customize_Setting {
/**
* Unique string identifier for the setting.
*
* @since 3.4.0
* @var string
*/
public $id = 'background_image_thumb'; public $id = 'background_image_thumb';
/** /**

View File

@ -15,6 +15,7 @@
* @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. * Customize control type.
* *

View File

@ -17,6 +17,13 @@
* @see WP_Customize_Setting * @see WP_Customize_Setting
*/ */
final class WP_Customize_Header_Image_Setting extends WP_Customize_Setting { final class WP_Customize_Header_Image_Setting extends WP_Customize_Setting {
/**
* Unique string identifier for the setting.
*
* @since 3.4.0
* @var string
*/
public $id = 'header_image_data'; public $id = 'header_image_data';
/** /**

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.1-alpha-53410'; $wp_version = '6.1-alpha-53411';
/** /**
* 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.