WP_Session_Tokens::verify( string $token ): bool

Validates the given session token for authenticity and validity.

Description

Checks that the given token is present and hasn’t expired.

Parameters

$tokenstringrequired
Token to verify.

Return

bool Whether the token is valid for the user.

Source

final public function verify( $token ) {
	$verifier = $this->hash_token( $token );
	return (bool) $this->get_session( $verifier );
}

Changelog

VersionDescription
4.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.