WP_Session_Tokens::destroy( string $token )
Destroys the session with the given token.
Parameters
- $token
-
(string) (Required) Session token to destroy.
Source
File: wp-includes/class-wp-session-tokens.php
final public function destroy( $token ) { $verifier = $this->hash_token( $token ); $this->update_session( $verifier, null ); }
Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_session_tokens/destroy