wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



rest_application_password_collect_status › WordPress Function

Depuis5.6.0
Dépréciéen/a
rest_application_password_collect_status ( $user_or_error, $app_password = array() )
Paramètres: (2)
  • (WP_Error) $user_or_error The authenticated user or error instance.
    Requis: Oui
  • (array) $app_password The Application Password used to authenticate.
    Requis: Non
    Défaut: array()
Défini(e) dans:
Codex:
Changelog:
  • 5.7.0

Collects the status of authenticating with an application password.



Source

function rest_application_password_collect_status( $user_or_error, $app_password = array() ) {
	global $wp_rest_application_password_status, $wp_rest_application_password_uuid;

	$wp_rest_application_password_status = $user_or_error;

	if ( empty( $app_password['uuid'] ) ) {
		$wp_rest_application_password_uuid = null;
	} else {
		$wp_rest_application_password_uuid = $app_password['uuid'];
	}
}