get_sitestats(): int[]

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.


Top ↑

Source

File: wp-includes/ms-functions.php. View all references

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

	return $stats;
}


Top ↑

Changelog

Changelog
Version Description
MU (3.0.0) Introduced.

Top ↑

User Contributed Notes

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