WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
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) ) { |