wp_destroy_current_session() WP 4.0.0
Remove the current session token from the database.
No Hooks.
Return
Null. Nothing.
Usage
wp_destroy_current_session();
Changelog
Since 4.0.0 | Introduced. |
Code of wp_destroy_current_session() wp destroy current session WP 5.6
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 );
}
}