wp_get_session_token(): string
Retrieves the current session token from the logged_in cookie.
Return
string Token.
Source
File: wp-includes/user.php
.
View all references
function wp_get_session_token() {
$cookie = wp_parse_auth_cookie( '', 'logged_in' );
return ! empty( $cookie['token'] ) ? $cookie['token'] : '';
}
Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |