wp_destroy_other_sessions() – Remove all but the current session token for the current user for the database.
You appear to be a bot. Output may be restricted
Description
Removes all but the current session token for the current user for the database.
Usage
wp_destroy_other_sessions();
Parameters
Returns
void
Source
File name: wordpress/wp-includes/user.php
Lines:
1 to 7 of 7
function wp_destroy_other_sessions() { $token = wp_get_session_token(); if ( $token ) { $manager = WP_Session_Tokens::WP_Session_Tokens::get_instance( get_current_user_id() ); $manager->destroy_others( $token ); } }