retreive_password хук-событие . WP 1.5.0
Запрещен (устарел) с версии 1.5.1. Больше не поддерживается и может быть удален. Смотрите 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.
Использование
add_action( 'retreive_password', 'action_function_name_9348', 10, 3 ); function action_function_name_9348( $user_login, $string, $string ){ // action... }
- $user_login(строка)
- The user login name.
- $string
- -
- $string
- -
Список изменений
С версии 1.5.0 | Введена. |
Устарела с 1.5.1 | Misspelled. Use {@see 'retrieve_password'} hook instead. |
Где вызывается хук
wp-includes/user.php 2498
do_action_deprecated( 'retreive_password', array( $user->user_login ), '1.5.1', 'retrieve_password' );