wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_network_by_path › WordPress Function

Seit3.9.0
Veraltetn/v
get_network_by_path ( $domain, $path, $segments = null )
Parameter: (3)
  • (string) $domain Domain to check.
    Erforderlich: Ja
  • (string) $path Path to check.
    Erforderlich: Ja
  • (int|null) $segments Path segments to use. Defaults to null, or the full path.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (WP_Network|false) Network object if successful. False when no network is found.
Definiert in:
Codex:

Retrieves the closest matching network for a domain and path.



Quellcode

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