Warning: This hook has been deprecated. Misspelled. Use ‘retrieve_password’ hook instead.
retreive_password WordPress Hook
The retreive_password hook allows a user to retrieve their password if they have forgotten it. This can be done by either entering their username or email address into the appropriate field on the WordPress login page, or by clicking the "Forgot Password" link. Once the information is submitted, WordPress will send an email to the user with a link to reset their password.
do_action_deprecated( 'retreive_password', string $user_login ) #
Fires before a new password is retrieved.
Description
Use the ‘retrieve_password’ hook instead.
Parameters
- $user_login
(string)The user login name.
Source
File: wp-includes/user.php
Changelog
Version | Description |
---|---|
1.5.1 | Misspelled. Use 'retrieve_password' hook instead. |
1.5.0 | Introduced. |