Fires when an application password failed to authenticate the user.
$error
Sortie :
@param WP_Error $error The authentication error.
// 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é');
}
Chargement des actualités...