wp_destroy_all_sessions() WordPress Function
The wp_destroy_all_sessions() function is used to destroy all active sessions for a user. This function is useful for when a user needs to be logged out of all their active sessions, for example, when a user's password is changed.
wp_destroy_all_sessions() #
Removes all session tokens for the current user from the database.
Source
File: wp-includes/user.php
function wp_destroy_all_sessions() { $manager = WP_Session_Tokens::get_instance( get_current_user_id() ); $manager->destroy_all(); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |