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 |
|---|---|
| 157 | * At the time of this action, the only recourse is to redirect somewhere |
| 158 | * and exit. If you want to declare a particular site, do so earlier. |
| 159 | * |
| 160 | * @since 3.9.0 |
| 161 | * |
| 162 | * @param object $current_site The network that had been determined. |
| 163 | * @param string $domain The domain used to search for a site. |
| 164 | * @param string $path The path used to search for a site. |
| 165 | */ |
| 166 | do_action( 'ms_site_not_found', $current_site, $domain, $path ); |
| 167 | |
| 168 | if ( is_subdomain_install() && ! defined( 'NOBLOGREDIRECT' ) ) { |
| 169 | // For a "subdomain" install, redirect to the signup form specifically. |
| 170 | $destination .= 'wp-signup.php?new=' . str_replace( '.' . $current_site->domain, '', $domain ); |
| 171 | } elseif ( is_subdomain_install() ) { |
| 172 | // For a "subdomain" install, the NOBLOGREDIRECT constant |
| 173 | // can be used to avoid a redirect to the signup form. |
| 174 | // Using the ms_site_not_found action is preferred to the constant. |
| 175 | if ( '%siteurl%' !== NOBLOGREDIRECT ) { |