wp_get_session_token() WordPress Function
The wp_get_session_token() function is used to get a user session token. This token is used to authenticate a user with the WordPress API.
wp_get_session_token() #
Retrieves the current session token from the logged_in cookie.
Return
(string) Token.
Source
File: wp-includes/user.php
function wp_get_session_token() { $cookie = wp_parse_auth_cookie( '', 'logged_in' ); return ! empty( $cookie['token'] ) ? $cookie['token'] : ''; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |