wp_destroy_current_session() WordPress Function
The wp_destroy_current_session() function is a WordPress function that destroys the current session. This function is useful for when you need to log out a user or end a session for security reasons.
wp_destroy_current_session() #
Removes the current session token from the database.
Source
File: wp-includes/user.php
function wp_destroy_current_session() { $token = wp_get_session_token(); if ( $token ) { $manager = WP_Session_Tokens::get_instance( get_current_user_id() ); $manager->destroy( $token ); } }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |