Home/Hooks/application_password_failed_authentication
ACTION

application_password_failed_authentication

Fires when an application password failed to authenticate the user.

wp-includes/user.php
Line 444
1 Parameter
View Source

Usage

add_action( 'application_password_failed_authentication', 'your_callback_function', 10, 1 );

Action Callback:

function your_callback_function( $error ) {
    // Your code here
    
}

Parameters

$error

Parameter 1

⚡ Action Hook

Action hooks allow you to insert custom code at specific points during WordPress execution. Actions do not return any values.