Uses
Uses | Description |
---|---|
wp-includes/class-wp-session-tokens.php: WP_Session_Tokens::get_instance() | Retrieves a session manager instance for a user. |
wp-includes/user.php: get_current_user_id() | Get the current user’s ID |
Remove all session tokens for the current user from the database.
File: wp-includes/user.php
function wp_destroy_all_sessions() { $manager = WP_Session_Tokens::get_instance( get_current_user_id() ); $manager->destroy_all(); }
Version | Description |
---|---|
4.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_destroy_all_sessions