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
803      /**
804       * Filters the login redirect URL.
805       *
806       * @since 3.0.0
807       *
808       * @param string           $redirect_to           The redirect destination URL.
809       * @param string           $requested_redirect_to The requested redirect destination URL passed as a parameter.
810       * @param WP_User|WP_Error $user                  WP_User object if login was successful, WP_Error object otherwise.
811       */
812      $redirect_to = apply_filters( 'login_redirect', $redirect_to, $requested_redirect_to, $user );
813
814      if ( !is_wp_error($user) && !$reauth ) {
815           if ( $interim_login ) {
816                $message = '<p class="message">' . __('You have logged in successfully.') . '</p>';
817                $interim_login = 'success';
818                login_header( '', $message ); ?>
819                </div>
820                <?php
821                /** This action is documented in wp-login.php */