get_current_network_id(): int

Retrieves the current network ID.

Return

int The ID of the current network.

Source

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 ); } 

Changelog

VersionDescription
4.6.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.