get_sitestats(): int[]

In this article

Gets the network’s site and user counts.

Return

int[] Site and user count for the network.
  • blogs int
    Number of sites on the network.
  • users int
    Number of users on the network.

Source

function get_sitestats() {
	$stats = array(
		'blogs' => get_blog_count(),
		'users' => get_user_count(),
	);

	return $stats;
}

Changelog

VersionDescription
MU (3.0.0)Introduced.

User Contributed Notes

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