wp_destroy_other_sessions()WP 4.0.0

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

No Hooks.

Return

null. Nothing (null).

Usage

wp_destroy_other_sessions();

Changelog

Since 4.0.0 Introduced.

wp_destroy_other_sessions() code WP 6.5.2

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 );
	}
}