update_user_option 更新用户选项

Posted in:
Update time:2020-10-27

函数描述

更新用户选项函数可以在单站点或多站点网络中使用。

用户选项就像用户元数据,除了他们在多站点网络中使用时支持指定某个站点。如果 $global 参数设置为 false, 也就是默认值,WordPress将添加数据表前缀到选项名称前。

Usage

<?php update_user_option( $user_id, $option_name, $newvalue, $global ) ?>

function parameter

parametersdata typeRequired or notdescriptivedefault value
$user_idinteger (math.)be用户IDnot have
$option_namestring (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 );

We offer WordPress Themes and Plugins Custom Development Services

This site has long undertaken WordPress themes, plugins, WooCommerce-based store mall development business. We have 10 years of experience in WordPress development, if you want to Developing Websites with WordPress, please contact WeChat: iwillhappy1314 or email: amos@wpcio.com for inquiries.

发表回复

Your email address will not be published. 必填项已用 * 标注

*