Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: auth_redirect_scheme

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
743           } else {
744                wp_redirect('https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']);
745                exit();
746           }
747      }
748
749      if ( is_user_admin() )
750           $scheme = 'logged_in';
751      else
752           $scheme = apply_filters( 'auth_redirect_scheme', '' );
753
754      if ( $user_id = wp_validate_auth_cookie( '',  $scheme) ) {
755           do_action('auth_redirect', $user_id);
756
757           // If the user wants ssl but the session is not ssl, redirect.
758           if ( !$secure && get_user_option('use_ssl', $user_id) && false !== strpos($_SERVER['REQUEST_URI'], 'wp-admin') ) {
759                if ( 0 === strpos($_SERVER['REQUEST_URI'], 'http') ) {
760                     wp_redirect(preg_replace('|^http://|', 'https://', $_SERVER['REQUEST_URI']));
761                     exit();