Docs, see ##19882.
git-svn-id: http://svn.automattic.com/wordpress/trunk@19910 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
40ff0dafbe
commit
51cdc1719d
|
@ -538,7 +538,7 @@ function delete_comment_meta($comment_id, $meta_key, $meta_value = '') {
|
||||||
* @link http://codex.wordpress.org/Function_Reference/get_comment_meta
|
* @link http://codex.wordpress.org/Function_Reference/get_comment_meta
|
||||||
*
|
*
|
||||||
* @param int $comment_id Comment ID.
|
* @param int $comment_id Comment ID.
|
||||||
* @param string $key The meta key to retrieve.
|
* @param string $key Optional. The meta key to retrieve. By default, returns data for all keys.
|
||||||
* @param bool $single Whether to return a single value.
|
* @param bool $single Whether to return a single value.
|
||||||
* @return mixed Will be an array if $single is false. Will be value of meta data field if $single
|
* @return mixed Will be an array if $single is false. Will be value of meta data field if $single
|
||||||
* is true.
|
* is true.
|
||||||
|
|
|
@ -1462,7 +1462,7 @@ function delete_post_meta($post_id, $meta_key, $meta_value = '') {
|
||||||
* @link http://codex.wordpress.org/Function_Reference/get_post_meta
|
* @link http://codex.wordpress.org/Function_Reference/get_post_meta
|
||||||
*
|
*
|
||||||
* @param int $post_id Post ID.
|
* @param int $post_id Post ID.
|
||||||
* @param string $key The meta key to retrieve.
|
* @param string $key Optional. The meta key to retrieve. By default, returns data for all keys.
|
||||||
* @param bool $single Whether to return a single value.
|
* @param bool $single Whether to return a single value.
|
||||||
* @return mixed Will be an array if $single is false. Will be value of meta data field if $single
|
* @return mixed Will be an array if $single is false. Will be value of meta data field if $single
|
||||||
* is true.
|
* is true.
|
||||||
|
|
|
@ -798,7 +798,7 @@ function delete_user_meta($user_id, $meta_key, $meta_value = '') {
|
||||||
* @link http://codex.wordpress.org/Function_Reference/get_user_meta
|
* @link http://codex.wordpress.org/Function_Reference/get_user_meta
|
||||||
*
|
*
|
||||||
* @param int $user_id Post ID.
|
* @param int $user_id Post ID.
|
||||||
* @param string $key The meta key to retrieve.
|
* @param string $key Optional. The meta key to retrieve. By default, returns data for all keys.
|
||||||
* @param bool $single Whether to return a single value.
|
* @param bool $single Whether to return a single value.
|
||||||
* @return mixed Will be an array if $single is false. Will be value of meta data field if $single
|
* @return mixed Will be an array if $single is false. Will be value of meta data field if $single
|
||||||
* is true.
|
* is true.
|
||||||
|
|
Loading…
Reference in New Issue