diff --git a/wp-includes/meta.php b/wp-includes/meta.php index 9bd989540c..67d274b4a8 100644 --- a/wp-includes/meta.php +++ b/wp-includes/meta.php @@ -1129,7 +1129,9 @@ function sanitize_meta( $meta_key, $meta_value, $object_type, $object_subtype = * @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. * @type string $auth_callback Optional. A function or method to call when performing edit_post_meta, add_post_meta, and delete_post_meta capability checks. - * @type bool $show_in_rest Whether data associated with this meta key can be considered public. + * @type bool $show_in_rest Whether data associated with this meta key can be considered public and + * should be accessible via the REST API. A custom post type must also declare + * support for custom fields for registered meta to be accessible via REST. * } * @param string|array $deprecated Deprecated. Use `$args` instead. * diff --git a/wp-includes/version.php b/wp-includes/version.php index 9413eae104..bf195e381a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45785'; +$wp_version = '5.3-alpha-45786'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.