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.

示例

注意

  • 使用到: add_metadata()

历史

添加于 版本: 3.0.0

源文件

add_user_meta() 函数的代码位于 wp-includes/user.php.

相关

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 删除。

评论 (0)COMMENT