wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_sitestats › WordPress Function

Seit
Veraltetn/v
get_sitestats ( Keine Parameter )
Gibt zurück:
  • (int[]) { Site and user count for the network. @type int $blogs Number of sites on the network. @type int $users Number of users on the network. }
Definiert in:
Codex:
Changelog:
  • MU

Gets the network's site and user counts.



Quellcode

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

	return $stats;
}