WP_User_Meta_Session_Tokens::destroy_all_sessions()protectedWP 4.0.0

Destroys all session tokens for the user.

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_all_sessions();

Changelog

Since 4.0.0 Introduced.

WP_User_Meta_Session_Tokens::destroy_all_sessions() code WP 6.4.3

protected function destroy_all_sessions() {
	$this->update_sessions( array() );
}