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.


Top ↑

Source

File: wp-includes/user.php

function wp_get_session_token() {
	$cookie = wp_parse_auth_cookie( '', 'logged_in' );
	return ! empty( $cookie['token'] ) ? $cookie['token'] : '';
}


Top ↑

Changelog

Changelog
VersionDescription
4.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More