Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_authenticate

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
180      } elseif ( !empty($_COOKIE) ) {
181           if ( !empty($_COOKIE[USER_COOKIE]) )
182                $user_login = $_COOKIE[USER_COOKIE];
183           if ( !empty($_COOKIE[PASS_COOKIE]) ) {
184                $user_pass = $_COOKIE[PASS_COOKIE];
185                $using_cookie = true;
186           }
187      }
188
189      do_action('wp_authenticate', array(&$user_login, &$user_pass));
190
191      if ( $_POST ) {
192           $user = new WP_User(0, $user_login);
193      
194           // If the user can't edit posts, send them to their profile.
195           if ( !$user->has_cap('edit_posts') && ( empty( $redirect_to ) || $redirect_to == 'wp-admin/' ) )
196                $redirect_to = get_settings('siteurl') . '/wp-admin/profile.php';
197      
198           if ( wp_login($user_login, $user_pass, $using_cookie) ) {