On this page
wp_destroy_other_sessions()
Removes all but the current session token for the current user for the database.
Source
File: wp-includes/user.php. View all references
function wp_destroy_other_sessions() {
$token = wp_get_session_token();
if ( $token ) {
$manager = WP_Session_Tokens::get_instance( get_current_user_id() );
$manager->destroy_others( $token );
}
}
Related
Uses
| Uses | Description |
|---|---|
| WP_Session_Tokens::get_instance() wp-includes/class-wp-session-tokens.php | Retrieves a session manager instance for a user. |
| wp_get_session_token() wp-includes/user.php | Retrieves the current session token from the logged_in cookie. |
| get_current_user_id() wp-includes/user.php | Gets the current user’s ID. |
Changelog
| Version | Description |
|---|---|
| 4.0.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_destroy_other_sessions