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
789      /**
790       * Filter the login redirect URL.
791       *
792       * @since 3.0.0
793       *
794       * @param string           $redirect_to           The redirect destination URL.
795       * @param string           $requested_redirect_to The requested redirect destination URL passed as a parameter.
796       * @param WP_User|WP_Error $user                  WP_User object if login was successful, WP_Error object otherwise.
797       */
798      $redirect_to = apply_filters( 'login_redirect', $redirect_to, $requested_redirect_to, $user );
799
800      if ( !is_wp_error($user) && !$reauth ) {
801           if ( $interim_login ) {
802                $message = '<p class="message">' . __('You have logged in successfully.') . '</p>';
803                $interim_login = 'success';
804                login_header( '', $message ); ?>
805                </div>
806                <?php
807                /** This action is documented in wp-login.php */