rest_get_authenticated_app_password(): string|null

In this article

Gets the Application Password used for authenticating the request.

Return

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

Source

function rest_get_authenticated_app_password() {
	global $wp_rest_application_password_uuid;

	return $wp_rest_application_password_uuid;
}

Changelog

VersionDescription
5.7.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.