WordPress函数文档attribute_escape()
添加一个用户的meta自定义附加信息 描述 Add metadata to a user’s record. …
添加一个用户的meta自定义附加信息
描述
Add metadata to a user’s record.
用法
<?php add_user_meta( $user_id, $meta_key, $meta_value, $unique ); ?>
参数
$user_id
(integer) (必填) user ID
默认值: None
$meta_key
(string) (必填) Metadata name.
默认值: None
$meta_value
(mixed) (必填) Metadata value.
默认值: None
$unique
(boolean) (可选) Whether the same key should not be added.
默认值: false
返回值
(integer/boolean)
Primary key id for success. False for failure.
示例
1
2
3
4
5
6
7
8
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
<?php
$user_id = 1;
$awesome_level = 1000;
add_user_meta( $user_id, ‘_level_of_awesomeness’, $awesome_level);
?>
|
注意
- 使用到: add_metadata()
历史
添加于 版本: 3.0.0
源文件
add_user_meta() 函数的代码位于 wp-includes/user.php
.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Add meta data field to a user.
*
* Post meta data is called “Custom Fields” on the Administration Screens.
*
* @since 3.0.0
* @link https://codex.wordpress.org/Function_Reference/add_user_meta
*
* @param int $user_id User ID.
* @param string $meta_key Metadata name.
* @param mixed $meta_value Metadata value.
* @param bool $unique Optional, default is false. Whether the same key should not be added.
* @return int|false Meta ID on success, false on failure.
*/
function add_user_meta($user_id, $meta_key, $meta_value, $unique = false) {
return add_metadata(‘user’, $user_id, $meta_key, $meta_value, $unique);
}
|
相关
add_user_meta(),
delete_user_meta(),
get_user_meta(),
update_user_meta(),
get_user_option(),
delete_user_option(),
update_user_option(),
- 原文:http://codex.wordpress.org/Function_Reference/add_user_meta
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!