rest_get_authenticated_app_password()
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() rest get authenticated app password code WP 6.7.1
function rest_get_authenticated_app_password() { global $wp_rest_application_password_uuid; return $wp_rest_application_password_uuid; }