Fires when a network cannot be found based on the requested domain and path.
$domainstring$pathstringwp-includes/ms-load.php:359ms_load_current_site_and_network()wp-includes/ms-load.php:387ms_load_current_site_and_network() * * @since 4.4.0 * * @param string $domain The domain used to search for a network. * @param string $path The path used to search for a path. */ do_action( 'ms_network_not_found', $domain, $path ); return false; } elseif ( $path === $current_site->path ) { $current_blog = get_site_by_path( $domain, $path ); } else { // Search the network path + one more path segment (on top of the network path).Introduced in 4.4.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.