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 |
|---|---|
| 770 | wp_redirect(preg_replace('|^http://|', 'https://', $_SERVER['REQUEST_URI'])); |
| 771 | exit(); |
| 772 | } else { |
| 773 | wp_redirect('https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']); |
| 774 | exit(); |
| 775 | } |
| 776 | } |
| 777 | |
| 778 | if ( $user_id = wp_validate_auth_cookie( '', apply_filters( 'auth_redirect_scheme', '' ) ) ) { |
| 779 | do_action('auth_redirect', $user_id); |
| 780 | |
| 781 | // If the user wants ssl but the session is not ssl, redirect. |
| 782 | if ( !$secure && get_user_option('use_ssl', $user_id) && false !== strpos($_SERVER['REQUEST_URI'], 'wp-admin') ) { |
| 783 | if ( 0 === strpos($_SERVER['REQUEST_URI'], 'http') ) { |
| 784 | wp_redirect(preg_replace('|^http://|', 'https://', $_SERVER['REQUEST_URI'])); |
| 785 | exit(); |
| 786 | } else { |
| 787 | wp_redirect('https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']); |
| 788 | exit(); |