wpseek.com
WordPress开发者和主题制作者的搜索引擎



rest_get_authenticated_app_password › WordPress Function

Since5.7.0
已弃用n/a
rest_get_authenticated_app_password ( 没有参数 )
返回:
  • (string|null) The Application Password UUID, or null if Application Passwords was not used.
定义在:
文档:

Gets the Application Password used for authenticating the request.



源码

function rest_get_authenticated_app_password() {
	global $wp_rest_application_password_uuid;

	return $wp_rest_application_password_uuid;
}