update_user_option

函数


update_user_option ( $user_id, $option_name, $newvalue, $global = false )
参数
  • (int)
    $user_id
    User ID.
    Required:
  • (string)
    $option_name
    User option name.
    Required:
  • (mixed)
    $newvalue
    User option value.
    Required:
  • (bool)
    $global
    Optional. Whether option name is global or blog specific. Default false (blog specific).
    Required:
    Default: false
返回值
  • (int|bool) User meta ID if the option didn’t exist, true on successful update, false on failure.
定义位置
  • wp-includes/user.php
    , line 711
引入
2.0.0
弃用

Updates user option with global blog capability.

User options are just like user metadata except that they have support for
global blog options. If the ‘global’ parameter is false, which it is by default
it will prepend the WordPress table prefix to the option name.

Deletes the user option if $newvalue is empty.

function update_user_option( $user_id, $option_name, $newvalue, $global = false ) {
	global $wpdb;

	if ( ! $global ) {
		$option_name = $wpdb->get_blog_prefix() . $option_name;
	}

	return update_user_meta( $user_id, $option_name, $newvalue );
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。