Uses
Uses | Description |
---|---|
wp-includes/user.php: update_user_meta() | Update user meta field based on user ID. |
wp-includes/wp-db.php: wpdb::get_blog_prefix() | Gets blog prefix. |
Update user option with global blog capability.
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.
Deletes the user option if $newvalue is empty.
(int) (Required) User ID.
(string) (Required) User option name.
(mixed) (Required) User option value.
(bool) (Optional) Whether option name is global or blog specific. Default false (blog specific).
Default value: false
(int|bool) User meta ID if the option didn't exist, true on successful update, false on failure.
File: wp-includes/user.php
function update_user_option( $user_id, $option_name, $newvalue, $global = false ) { global $wpdb; if ( ! $global ) { $option_name = $wpdb->get_blog_prefix() . $option_name; } return update_user_meta( $user_id, $option_name, $newvalue ); }
Version | Description |
---|---|
2.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/update_user_option