application_password_failed_authentication

ACTION wp-includes\user.php (ligne 444) github
Fires when an application password failed to authenticate the user.

Paramètres

Entrée :
$error
Sortie :
@param WP_Error $error The authentication error.

Utilisation

// Ajouter une fonction au hook action 'application_password_failed_authentication'
add_action('application_password_failed_authentication', 'ma_fonction_personnalisee', 10, 1);

function ma_fonction_personnalisee($error) {
    // Votre code ici
    error_log('Hook application_password_failed_authentication déclenché');
}

Actualités

Chargement des actualités...