get_user_option 获取用户选项

Posted in:
Update time:2020-10-27

函数描述

获取站点或多站点网络中的用户选项。

如果没有指定用户ID,将使用当前用户,结果过滤功能把原始选项名称和最终用户数据对象作为第三个参数传递。

此函数将首先检查指定站点的用户元数据,然后检查全网络的用户元数据,此选项可以被修改或被插件指定。

Usage

<?php get_user_option( $option, $user ) ?> 

parameters

parametersdata typeRequired or notdescriptivedefault value
$optionstring (computer science)be用户选项名称not have
$userinteger (math.)clogged用户 ID,如果没有指定,使用当前用户ID0
$deprecatedstring (computer science)clogged此参数已弃用,如果设置,会产生一个参数弃用警告信息empty string

return value

(mixed) 查询成功返回选项值,失败返回false

usage example

$bar = get_user_option( 'show_admin_bar_front', get_current_user_id() );

if (  $bar == 'true' ) {
	echo '管理工具条已启用';
} else {
	echo '管理工具条已禁用';
}

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. 必填项已用 * 标注

*