Ticket #25774: 25774.diff
File 25774.diff, 1.3 KB (added by , 11 years ago) |
---|
-
wp-includes/user.php
812 812 * @uses add_metadata() 813 813 * @link http://codex.wordpress.org/Function_Reference/add_user_meta 814 814 * 815 * @param int $user_id PostID.815 * @param int $user_id User ID. 816 816 * @param string $meta_key Metadata name. 817 817 * @param mixed $meta_value Metadata value. 818 818 * @param bool $unique Optional, default is false. Whether the same key should not be added. … … 849 849 * @uses get_metadata() 850 850 * @link http://codex.wordpress.org/Function_Reference/get_user_meta 851 851 * 852 * @param int $user_id PostID.852 * @param int $user_id User ID. 853 853 * @param string $key Optional. The meta key to retrieve. By default, returns data for all keys. 854 854 * @param bool $single Whether to return a single value. 855 855 * @return mixed Will be an array if $single is false. Will be value of meta data field if $single … … 871 871 * @uses update_metadata 872 872 * @link http://codex.wordpress.org/Function_Reference/update_user_meta 873 873 * 874 * @param int $user_id PostID.874 * @param int $user_id User ID. 875 875 * @param string $meta_key Metadata key. 876 876 * @param mixed $meta_value Metadata value. 877 877 * @param mixed $prev_value Optional. Previous value to check before removing.