Uses
Uses | Description |
---|---|
wp-includes/user.php: update_user_option() | Update user option with global blog capability. |
wp-includes/user.php: get_current_user_id() | Get the current user’s ID |
Deletes the user settings of the current user.
File: wp-includes/option.php
function delete_all_user_settings() { $user_id = get_current_user_id(); if ( ! $user_id ) { return; } update_user_option( $user_id, 'user-settings', '', false ); setcookie( 'wp-settings-' . $user_id, ' ', time() - YEAR_IN_SECONDS, SITECOOKIEPATH ); }
Version | Description |
---|---|
2.7.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/delete_all_user_settings