Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: blog_redirect_404

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
1785 }
1786
1787 /**
1788  * Correct 404 redirects when NOBLOGREDIRECT is defined.
1789  *
1790  * @since MU
1791  */
1792 function maybe_redirect_404() {
1793      global $current_site;
1794      if ( is_main_site() && is_404() && defined( 'NOBLOGREDIRECT' ) && ( $destination = apply_filters( 'blog_redirect_404', NOBLOGREDIRECT ) ) ) {
1795           if ( $destination == '%siteurl%' )
1796                $destination = network_home_url();
1797           wp_redirect( $destination );
1798           exit();
1799      }
1800 }
1801
1802 /**
1803  * Add a new user to a blog by visiting /newbloguser/username/.