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



get_current_network_id › WordPress Function

Seit4.6.0
Veraltetn/v
get_current_network_id ( Keine Parameter )
Gibt zurück:
  • (int) The ID of the current network.
Definiert in:
Codex:

Retrieves the current network ID.



Quellcode

function get_current_network_id() {
	if ( ! is_multisite() ) {
		return 1;
	}

	$current_network = get_network();

	if ( ! isset( $current_network->id ) ) {
		return get_main_network_id();
	}

	return absint( $current_network->id );
}