Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: logout_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
480      /**
481       * Filters the log out redirect URL.
482       *
483       * @since 4.2.0
484       *
485       * @param string  $redirect_to           The redirect destination URL.
486       * @param string  $requested_redirect_to The requested redirect destination URL passed as a parameter.
487       * @param WP_User $user                  The WP_User object for the user that's logging out.
488       */
489      $redirect_to = apply_filters( 'logout_redirect', $redirect_to, $requested_redirect_to, $user );
490      wp_safe_redirect( $redirect_to );
491      exit();
492
493 case 'lostpassword' :
494 case 'retrievepassword' :
495
496      if ( $http_post ) {
497           $errors = retrieve_password();
498           if ( !is_wp_error($errors) ) {