rest_get_authenticated_app_password()WP 5.7.0

Gets the Application Password used for authenticating the request.

No Hooks.

Return

String|null. The Application Password UUID, or null if Application Passwords was not used.

Usage

rest_get_authenticated_app_password();

Notes

  • Global. String|null. $wp_rest_application_password_uuid

Changelog

Since 5.7.0 Introduced.

rest_get_authenticated_app_password() code WP 6.4.3

function rest_get_authenticated_app_password() {
	global $wp_rest_application_password_uuid;

	return $wp_rest_application_password_uuid;
}