wp_authenticate_application_password_errors WordPress Action Hook
The wp_authenticate_application_password_errors hook is used to filter the error messages returned by the application password authentication process. This can be used to customise the error message output, or to return a different error message for different types of authentication errors.
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
Source
File: wp-includes/user.php
Changelog
Version | Description |
---|---|
5.6.0 | Introduced. |