Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: retrieve_password

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
3058      do_action_deprecated( 'retreive_password', array( $user->user_login ), '1.5.1', 'retrieve_password' );
3059
3060      /**
3061       * Fires before a new password is retrieved.
3062       *
3063       * @since 1.5.1
3064       *
3065       * @param string $user_login The user login name.
3066       */
3067      do_action( 'retrieve_password', $user->user_login );
3068
3069      $password_reset_allowed = wp_is_password_reset_allowed_for_user( $user );
3070      if ( ! $password_reset_allowed ) {
3071           return new WP_Error( 'no_password_reset', __( 'Password reset is not allowed for this user' ) );
3072      } elseif ( is_wp_error( $password_reset_allowed ) ) {
3073           return $password_reset_allowed;
3074      }
3075
3076      // Generate something random for a password reset key.