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
2099      /**
2100       * Filters the redirect URL for 404s on the main site.
2101       *
2102       * The filter is only evaluated if the NOBLOGREDIRECT constant is defined.
2103       *
2104       * @since 3.0.0
2105       *
2106       * @param string $no_blog_redirect The redirect URL defined in NOBLOGREDIRECT.
2107       */
2108      if ( is_main_site() && is_404() && defined( 'NOBLOGREDIRECT' ) && ( $destination = apply_filters( 'blog_redirect_404', NOBLOGREDIRECT ) ) ) {
2109           if ( $destination == '%siteurl%' ) {
2110                $destination = network_home_url();
2111           }
2112           wp_redirect( $destination );
2113           exit();
2114      }
2115 }
2116
2117 /**