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 |
|---|---|
| 1212 | $user_id = wp_validate_auth_cookie( '', $scheme ); |
| 1213 | if ( $user_id ) { |
| 1214 | /** |
| 1215 | * Fires before the authentication redirect. |
| 1216 | * |
| 1217 | * @since 2.8.0 |
| 1218 | * |
| 1219 | * @param int $user_id User ID. |
| 1220 | */ |
| 1221 | do_action( 'auth_redirect', $user_id ); |
| 1222 | |
| 1223 | // If the user wants ssl but the session is not ssl, redirect. |
| 1224 | if ( ! $secure && get_user_option( 'use_ssl', $user_id ) && str_contains( $_SERVER['REQUEST_URI'], 'wp-admin' ) ) { |
| 1225 | if ( str_starts_with( $_SERVER['REQUEST_URI'], 'http' ) ) { |
| 1226 | wp_redirect( set_url_scheme( $_SERVER['REQUEST_URI'], 'https' ) ); |
| 1227 | exit; |
| 1228 | } else { |
| 1229 | wp_redirect( 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ); |
| 1230 | exit; |