Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: login_redirect

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
1198           /**
1199            * Filters the login redirect URL.
1200            *
1201            * @since 3.0.0
1202            *
1203            * @param string           $redirect_to           The redirect destination URL.
1204            * @param string           $requested_redirect_to The requested redirect destination URL passed as a parameter.
1205            * @param WP_User|WP_Error $user                  WP_User object if login was successful, WP_Error object otherwise.
1206            */
1207           $redirect_to = apply_filters( 'login_redirect', $redirect_to, $requested_redirect_to, $user );
1208
1209           if ( ! is_wp_error( $user ) && ! $reauth ) {
1210                if ( $interim_login ) {
1211                     $message       = '<p class="message">' . __( 'You have logged in successfully.' ) . '</p>';
1212                     $interim_login = 'success';
1213                     login_header( '', $message );
1214
1215                     ?>
1216                     </div>