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



get_main_site_id › WordPress Function

Seit4.9.0
Veraltetn/v
get_main_site_id ( $network_id = null )
Parameter:
  • (int) $network_id Optional. The ID of the network for which to get the main site. Defaults to the current network.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (int) The ID of the main site.
Definiert in:
Codex:

Gets the main site ID.



Quellcode

function get_main_site_id( $network_id = null ) {
	if ( ! is_multisite() ) {
		return get_current_blog_id();
	}

	$network = get_network( $network_id );
	if ( ! $network ) {
		return 0;
	}

	return $network->site_id;
}