Usage
add_action( 'after_password_reset', 'your_callback_function', 10, 2 );Action Callback:
function your_callback_function( $user, $new_pass ) {
// Your code here
}Parameters
$userParameter 1
$new_passParameter 2
⚡ Action Hook
Action hooks allow you to insert custom code at specific points during WordPress execution. Actions do not return any values.