On this page
delete_user_option( int $user_id, string $option_name, bool $global = false ): bool
Deletes user option with global blog capability.
Description
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.
Parameters
$user_idint Required-
User ID
$option_namestring Required-
User option name.
$globalbool Optional-
Whether option name is global or blog specific.
Default false (blog specific).Default:
false
Return
bool True on success, false on failure.
Source
File: wp-includes/user.php. View all references
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 );
}
Related
Uses
| Uses | Description |
|---|---|
| delete_user_meta() wp-includes/user.php | Removes metadata matching criteria from a user. |
| wpdb::get_blog_prefix() wp-includes/class-wpdb.php | Gets blog prefix. |
Used By
| Used By | Description |
|---|---|
| wpmu_create_user() wp-includes/ms-functions.php | Creates a user. |
Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/delete_user_option