get_sitestats()

Gets the network’s site and user counts.


Description Description


Return Return

(array) Site and user count for the network.


Top ↑

Source Source

File: wp-includes/ms-functions.php

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

	return $stats;
}

Top ↑

Changelog Changelog

Changelog
Version Description
MU (3.0.0) Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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