WP_Session_Tokens::verify() WordPress Method
This function verifies the given token. If the token is valid, it returns the user associated with the token. Otherwise, it returns false.
WP_Session_Tokens::verify( string $token ) #
Validates the given session token for authenticity and validity.
Description
Checks that the given token is present and hasn’t expired.
Parameters
- $token
 (string)(Required)Token to verify.
Return
(bool) Whether the token is valid for the user.
Source
File: wp-includes/class-wp-session-tokens.php
	final public function verify( $token ) {
		$verifier = $this->hash_token( $token );
		return (bool) $this->get_session( $verifier );
	}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description | 
|---|---|
| 4.0.0 | Introduced. |