Uses
Uses | Description |
---|---|
wp-includes/pluggable.php: wp_parse_auth_cookie() | Parses a cookie into its components. |
Retrieve the current session token from the logged_in cookie.
(string) Token.
File: wp-includes/user.php
function wp_get_session_token() { $cookie = wp_parse_auth_cookie( '', 'logged_in' ); return ! empty( $cookie['token'] ) ? $cookie['token'] : ''; }
Version | Description |
---|---|
4.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_get_session_token