get_network_by_path

Advertisement

Summery Summery

Retrieve the closest matching network for a domain and path.

Syntax Syntax

get_network_by_path( string $domain, string $path, int|null $segments = null )

Parameters Parameters

$domain

(Required) Domain to check.

$path

(Required) Path to check.

$segments

(Optional) Path segments to use. Defaults to null, or the full path.

Default value: null

Return Return

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

Source Source

File: wp-includes/ms-load.php

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

Advertisement

Changelog Changelog

Changelog
Version Description
3.9.0 Introduced.

Advertisement

Leave a Reply