Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_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
369 }
370 endif;
371
372 // Cookie safe redirect.  Works around IIS Set-Cookie bug.
373 // http://support.microsoft.com/kb/q176113/
374 if ( !function_exists('wp_redirect') ) :
375 function wp_redirect($location, $status = 302) {
376      global $is_IIS;
377
378      $location = apply_filters('wp_redirect', $location, $status);
379
380      if ( !$location ) // allows the wp_redirect filter to cancel a redirect
381           return false;
382
383      $location = wp_sanitize_redirect($location);
384
385      if ( $is_IIS ) {
386           header("Refresh: 0;url=$location");
387      } else {