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 |
|---|---|
| 1248 | /** |
| 1249 | * Filters the login redirect URL. |
| 1250 | * |
| 1251 | * @since 3.0.0 |
| 1252 | * |
| 1253 | * @param string $redirect_to The redirect destination URL. |
| 1254 | * @param string $requested_redirect_to The requested redirect destination URL passed as a parameter. |
| 1255 | * @param WP_User|WP_Error $user WP_User object if login was successful, WP_Error object otherwise. |
| 1256 | */ |
| 1257 | $redirect_to = apply_filters( 'login_redirect', $redirect_to, $requested_redirect_to, $user ); |
| 1258 | |
| 1259 | if ( ! is_wp_error( $user ) && ! $reauth ) { |
| 1260 | if ( $interim_login ) { |
| 1261 | $message = '<p class="message">' . __( 'You have logged in successfully.' ) . '</p>'; |
| 1262 | $interim_login = 'success'; |
| 1263 | login_header( '', $message ); |
| 1264 | |
| 1265 | ?> |
| 1266 | </div> |