do_action( 'after_password_reset', WP_User $user , string $new_pass )
Fires after the user’s password is reset.
Parameters Parameters
- $user
-
(WP_User) The user.
- $new_pass
-
(string) New user password.
Source Source
File: wp-includes/user.php
Changelog Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Remark: the
$new_pass
parameter is the “New password for the user in plaintext” originally passed toreset_password( $user, $new_pass ).