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

In this article

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

$errorWP_Error
The error object.
$userWP_User
The user authenticating.
$itemarray
The details about the application password.
$passwordstring
The raw supplied password.

Source

do_action( 'wp_authenticate_application_password_errors', $error, $user, $item, $password );

Changelog

VersionDescription
5.6.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.