Options/Meta: Document valid types for registration.
In 4.7, the REST API introduced types for options and meta passed into the registration functions. This adds the documentation for those types. Props iandunn, priyankabehera155. Fixes #40318. Built from https://develop.svn.wordpress.org/trunk@40603 git-svn-id: http://core.svn.wordpress.org/trunk@40473 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
131518542e
commit
3ecfb4b222
|
@ -974,6 +974,7 @@ function sanitize_meta( $meta_key, $meta_value, $object_type ) {
|
|||
* Data used to describe the meta key when registered.
|
||||
*
|
||||
* @type string $type The type of data associated with this meta key.
|
||||
* Valid values are 'string', 'boolean', 'integer', and 'number'.
|
||||
* @type string $description A description of the data attached to this meta key.
|
||||
* @type bool $single Whether the meta key has one value per object, or an array of values per object.
|
||||
* @type string $sanitize_callback A function or method to call when sanitizing `$meta_key` data.
|
||||
|
|
|
@ -1871,6 +1871,7 @@ function register_initial_settings() {
|
|||
* Data used to describe the setting when registered.
|
||||
*
|
||||
* @type string $type The type of data associated with this setting.
|
||||
* Valid values are 'string', 'boolean', 'integer', and 'number'.
|
||||
* @type string $description A description of the data attached to this setting.
|
||||
* @type callable $sanitize_callback A callback function that sanitizes the option's value.
|
||||
* @type bool $show_in_rest Whether data associated with this setting should be included in the REST API.
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.8-alpha-40602';
|
||||
$wp_version = '4.8-alpha-40603';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue