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.
This hook occurs 2 times in this file.
| Line | Code |
|---|---|
| 1140 | /* translators: %s: Link to the login page. */ |
| 1141 | __( 'Registration complete. Please check your email, then visit the <a href="%s">login page</a>.' ), |
| 1142 | wp_login_url() |
| 1143 | ), |
| 1144 | 'message' |
| 1145 | ); |
| 1146 | } |
| 1147 | |
| 1148 | /** This action is documented in wp-login.php */ |
| 1149 | $errors = apply_filters( 'wp_login_errors', $errors, $redirect_to ); |
| 1150 | |
| 1151 | login_header( __( 'Check your email' ), '', $errors ); |
| 1152 | login_footer(); |
| 1153 | break; |
| 1154 | |
| 1155 | case 'confirmaction': |
| 1156 | if ( ! isset( $_GET['request_id'] ) ) { |
| 1157 | wp_die( __( 'Missing request ID.' ) ); |
| 1158 | } |
| Line | Code |
| 1377 | |
| 1378 | /** |
| 1379 | * Filters the login page errors. |
| 1380 | * |
| 1381 | * @since 3.6.0 |
| 1382 | * |
| 1383 | * @param WP_Error $errors WP Error object. |
| 1384 | * @param string $redirect_to Redirect destination URL. |
| 1385 | */ |
| 1386 | $errors = apply_filters( 'wp_login_errors', $errors, $redirect_to ); |
| 1387 | |
| 1388 | // Clear any stale cookies. |
| 1389 | if ( $reauth ) { |
| 1390 | wp_clear_auth_cookie(); |
| 1391 | } |
| 1392 | |
| 1393 | login_header( __( 'Log In' ), '', $errors ); |
| 1394 | |
| 1395 | if ( isset( $_POST['log'] ) ) { |