Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_authenticate_user

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
141      /**
142       * Filter whether the given user can be authenticated with the provided $password.
143       *
144       * @since 2.5.0
145       *
146       * @param WP_User|WP_Error $user     WP_User or WP_Error object if a previous
147       *                                   callback failed authentication.
148       * @param string           $password Password to check against the user.
149       */
150      $user = apply_filters( 'wp_authenticate_user', $user, $password );
151      if ( is_wp_error($user) )
152           return $user;
153
154      if ( !wp_check_password($password, $user->user_pass, $user->ID) )
155           return new WP_Error( 'incorrect_password', sprintf( __( '<strong>ERROR</strong>: The password you entered for the username <strong>%1$s</strong> is incorrect. <a href="%2$s">Lost your password?</a>' ),
156           $username, wp_lostpassword_url() ) );
157
158      return $user;
159 }