wp_destroy_other_sessions()

In this article

Removes all but the current session token for the current user for the database.

Source

function wp_destroy_other_sessions() {	$token = wp_get_session_token();	if ( $token ) {	$manager = WP_Session_Tokens::get_instance( get_current_user_id() );	$manager->destroy_others( $token );	} } 

Changelog

VersionDescription
4.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.