get_network_by_path()WP 3.9.0

Retrieves the closest matching network for a domain and path.

No Hooks.

Return

WP_Network|false. Network object if successful. False when no network is found.

Usage

get_network_by_path( $domain, $path, $segments );
$domain(string) (required)
Domain to check.
$path(string) (required)
Path to check.
$segments(int|null)
Path segments to use.
Default: null, or the full path

Changelog

Since 3.9.0 Introduced.

get_network_by_path() code WP 6.5.2

function get_network_by_path( $domain, $path, $segments = null ) {
	return WP_Network::get_by_path( $domain, $path, $segments );
}