get_current_site()WP 3.0.0

Gets the current network.

Returns an object containing the 'id', 'domain', 'path', and 'site_name' properties of the network being viewed.

No Hooks.

Return

WP_Network. The current network.

Usage

get_current_site();

Notes

Changelog

Since 3.0.0 Introduced.

get_current_site() code WP 6.5.2

function get_current_site() {
	global $current_site;
	return $current_site;
}