函数描述
更新用户选项函数可以在单站点或多站点网络中使用。
用户选项就像用户元数据,除了他们在多站点网络中使用时支持指定某个站点。如果 $global 参数设置为 false, 也就是默认值,WordPress将添加数据表前缀到选项名称前。
Usage
<?php update_user_option( $user_id, $option_name, $newvalue, $global ) ?>
function parameter
parameters | data type | Required or not | descriptive | default value |
---|---|---|---|---|
$user_id | integer (math.) | be | 用户ID | not have |
$option_name | string (computer science) | be | 选项名称 | not have |
$newvalue | 任意值 | be | 选项值 | not have |
$global | 布尔值 | clogged | 多站点网络中选项名称是否为当前站点的 | false |
return value
布尔值,是否更新成功
usage example
在网站前端隐藏管理工具条:
update_user_option( $user_id, 'show_admin_bar_front', false );
多站点网络安装后, $global 参数可以用来设置整个网络的用户选项,而不仅仅是当前站点的。
update_user_option( $user_id, 'show_admin_bar_front', false, true );