do_action( 'wp_authenticate_application_password_errors', WP_Error $error, WP_User $user, array $item, string $password )

Fires when an application password has been successfully checked as valid.


Description

This allows for plugins to add additional constraints to prevent an application password from being used.


Parameters

$error

(WP_Error) The error object.

$user

(WP_User) The user authenticating.

$item

(array) The details about the application password.

$password

(string) The raw supplied password.


Source

File: wp-includes/user.php

View on GitHub


Changelog

Changelog
Version Description
5.6.0 Introduced.