函数原型
delete_user_option( int $user_id, string $option_name, bool $global = false ): bool
函数描述
Deletes user option with global blog capability.
是否弃用
未弃用
函数参数
-
$user_id
int
Required - User ID
-
$option_name
string
Required - User option name.
-
$global
bool
Optional - Whether option name is global or blog specific.
Default false (blog specific).Default:
false
函数返回值
bool True on success, false on failure.
函数位置
File: wp-includes/user.php.
函数源码
function delete_user_option( $user_id, $option_name, $global = false ) {
global $wpdb;
if ( ! $global ) {
$option_name = $wpdb->get_blog_prefix() . $option_name;
}
return delete_user_meta( $user_id, $option_name );
}
源码链接
变更日志
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |

