From 3d53fdba73e6699932a183b99c2ea197374233fe Mon Sep 17 00:00:00 2001 From: "K. Adam White" Date: Tue, 13 Aug 2019 01:51:00 +0000 Subject: [PATCH] Docs: Clarify custom-fields support requirement for viewing custom post meta in REST API. Fixes #47866. git-svn-id: https://develop.svn.wordpress.org/trunk@45786 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/meta.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/meta.php b/src/wp-includes/meta.php index 9bd989540c..67d274b4a8 100644 --- a/src/wp-includes/meta.php +++ b/src/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. *