WP_Session_Tokens::get( string $token )
Retrieves a user’s session for the given token.
Description Description
Parameters Parameters
- $token
-
(string) (Required) Session token.
Return Return
(array|null) The session, or null if it does not exist.
Source Source
File: wp-includes/class-wp-session-tokens.php
final public function get( $token ) { $verifier = $this->hash_token( $token ); return $this->get_session( $verifier ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |