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 |
---|---|
750 | /** |
751 | * Filter the login redirect URL. |
752 | * |
753 | * @since 3.0.0 |
754 | * |
755 | * @param string $redirect_to The redirect destination URL. |
756 | * @param string $requested_redirect_to The requested redirect destination URL passed as a parameter. |
757 | * @param WP_User|WP_Error $user WP_User object if login was successful, WP_Error object otherwise. |
758 | */ |
759 | $redirect_to = apply_filters( 'login_redirect', $redirect_to, $requested_redirect_to, $user ); |
760 |
|
761 | if ( !is_wp_error($user) && !$reauth ) { |
762 | if ( $interim_login ) { |
763 | $message = '<p class="message">' . __('You have logged in successfully.') . '</p>'; |
764 | $interim_login = 'success'; |
765 | login_header( '', $message ); ?> |
766 | </div> |
767 | <?php |
768 | /** This action is documented in wp-login.php */ |