retreive_password action-hook . WP 1.5.0
Deprecated in from version 1.5.1. It is no longer supported and can be removed in future releases. See retrieve_password.
Deprecated: 1.5.1 Misspelled. Use {@see 'retrieve_password'} hook instead.
Fires before a new password is retrieved.
Use the 'retrieve_password' hook instead.
Usage
add_action( 'retreive_password', 'action_function_name_803', 10, 3 ); function action_function_name_803( $user_login, $string, $string ){ // action... }
- $user_login(string)
- The user login name.
- $string
- -
- $string
- -
Changelog
Since 1.5.0 | Introduced. | |
Deprecated Since 1.5.1 | Misspelled. Use {@see 'retrieve_password'} hook instead. |
Where the hook is called
wp-includes/user.php 2498
do_action_deprecated( 'retreive_password', array( $user->user_login ), '1.5.1', 'retrieve_password' );