wpseek.com
A WordPress-centric search engine for devs and theme authors



rest_get_authenticated_app_password › WordPress Function

Since5.7.0
Deprecatedn/a
rest_get_authenticated_app_password ( No parameters )
Returns:
  • (string|null) The Application Password UUID, or null if Application Passwords was not used.
Defined at:
Codex:

Gets the Application Password used for authenticating the request.



Source

function rest_get_authenticated_app_password() {
	global $wp_rest_application_password_uuid;

	return $wp_rest_application_password_uuid;
}