WP_User_Meta_Session_Tokens::destroy_other_sessions()protectedWP 4.0.0

Destroys all sessions for this user, except the single session with the given verifier.

Method of the class: WP_User_Meta_Session_Tokens{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->destroy_other_sessions( $verifier );
$verifier(string) (required)
Verifier of the session to keep.

Changelog

Since 4.0.0 Introduced.

WP_User_Meta_Session_Tokens::destroy_other_sessions() code WP 6.5.2

protected function destroy_other_sessions( $verifier ) {
	$session = $this->get_session( $verifier );
	$this->update_sessions( array( $verifier => $session ) );
}