Docs: Further clarify return results for a non-existing ID in metadata functions.
This adds a note that the functions return either an empty array or an empty string for a valid but non-existing ID, depending on the `$single` parameter. Follow-up to [48658], [50641]. Props rodrigosprimo, jrf. See #61608. Built from https://develop.svn.wordpress.org/trunk@58962 git-svn-id: http://core.svn.wordpress.org/trunk@58358 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c585121d5e
commit
8532edd526
|
@ -479,7 +479,8 @@ function delete_comment_meta( $comment_id, $meta_key, $meta_value = '' ) {
|
|||
* @return mixed An array of values if `$single` is false.
|
||||
* The value of meta data field if `$single` is true.
|
||||
* False for an invalid `$comment_id` (non-numeric, zero, or negative value).
|
||||
* An empty string if a valid but non-existing comment ID is passed.
|
||||
* An empty array if a valid but non-existing comment ID is passed and `$single` is false.
|
||||
* An empty string if a valid but non-existing comment ID is passed and `$single` is true.
|
||||
*/
|
||||
function get_comment_meta( $comment_id, $key = '', $single = false ) {
|
||||
return get_metadata( 'comment', $comment_id, $key, $single );
|
||||
|
|
|
@ -568,7 +568,8 @@ function delete_metadata( $meta_type, $object_id, $meta_key, $meta_value = '', $
|
|||
* The value of the meta field if `$single` is true.
|
||||
* False for an invalid `$object_id` (non-numeric, zero, or negative value),
|
||||
* or if `$meta_type` is not specified.
|
||||
* An empty string if a valid but non-existing object ID is passed.
|
||||
* An empty array if a valid but non-existing object ID is passed and `$single` is false.
|
||||
* An empty string if a valid but non-existing object ID is passed and `$single` is true.
|
||||
*/
|
||||
function get_metadata( $meta_type, $object_id, $meta_key = '', $single = false ) {
|
||||
$value = get_metadata_raw( $meta_type, $object_id, $meta_key, $single );
|
||||
|
|
|
@ -1069,7 +1069,8 @@ function delete_site_meta( $site_id, $meta_key, $meta_value = '' ) {
|
|||
* @return mixed An array of values if `$single` is false.
|
||||
* The value of meta data field if `$single` is true.
|
||||
* False for an invalid `$site_id` (non-numeric, zero, or negative value).
|
||||
* An empty string if a valid but non-existing site ID is passed.
|
||||
* An empty array if a valid but non-existing site ID is passed and `$single` is false.
|
||||
* An empty string if a valid but non-existing site ID is passed and `$single` is true.
|
||||
*/
|
||||
function get_site_meta( $site_id, $key = '', $single = false ) {
|
||||
return get_metadata( 'blog', $site_id, $key, $single );
|
||||
|
|
|
@ -2607,7 +2607,8 @@ function delete_post_meta( $post_id, $meta_key, $meta_value = '' ) {
|
|||
* @return mixed An array of values if `$single` is false.
|
||||
* The value of the meta field if `$single` is true.
|
||||
* False for an invalid `$post_id` (non-numeric, zero, or negative value).
|
||||
* An empty string if a valid but non-existing post ID is passed.
|
||||
* An empty array if a valid but non-existing post ID is passed and `$single` is false.
|
||||
* An empty string if a valid but non-existing post ID is passed and `$single` is true.
|
||||
*/
|
||||
function get_post_meta( $post_id, $key = '', $single = false ) {
|
||||
return get_metadata( 'post', $post_id, $key, $single );
|
||||
|
|
|
@ -1430,7 +1430,8 @@ function delete_term_meta( $term_id, $meta_key, $meta_value = '' ) {
|
|||
* @return mixed An array of values if `$single` is false.
|
||||
* The value of the meta field if `$single` is true.
|
||||
* False for an invalid `$term_id` (non-numeric, zero, or negative value).
|
||||
* An empty string if a valid but non-existing term ID is passed.
|
||||
* An empty array if a valid but non-existing term ID is passed and `$single` is false.
|
||||
* An empty string if a valid but non-existing term ID is passed and `$single` is true.
|
||||
*/
|
||||
function get_term_meta( $term_id, $key = '', $single = false ) {
|
||||
return get_metadata( 'term', $term_id, $key, $single );
|
||||
|
|
|
@ -1185,7 +1185,8 @@ function delete_user_meta( $user_id, $meta_key, $meta_value = '' ) {
|
|||
* @return mixed An array of values if `$single` is false.
|
||||
* The value of meta data field if `$single` is true.
|
||||
* False for an invalid `$user_id` (non-numeric, zero, or negative value).
|
||||
* An empty string if a valid but non-existing user ID is passed.
|
||||
* An empty array if a valid but non-existing user ID is passed and `$single` is false.
|
||||
* An empty string if a valid but non-existing user ID is passed and `$single` is true.
|
||||
*/
|
||||
function get_user_meta( $user_id, $key = '', $single = false ) {
|
||||
return get_metadata( 'user', $user_id, $key, $single );
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.7-alpha-58961';
|
||||
$wp_version = '6.7-alpha-58962';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue