password_reset WordPress Action Hook
The password_reset hook is a hook that is called when a user initiates a password reset. This hook can be used to do any necessary actions that need to happen when a user initiates a password reset.
do_action( 'password_reset', WP_User $user , string $new_pass ) #
Fires before the user’s password is reset.
Parameters
- $user
(WP_User)The user.
- $new_pass
(string)New user password.
More Information
Runs after the user submits a new password during password reset but before the new password is actually set.
Source
File: wp-includes/user.php
Changelog
Version | Description |
---|---|
1.5.0 | Introduced. |