Definition:
function get_sitestats() {}
Gets the network’s site and user counts.
Return values
returns:Site and user count for the network.
Source code
function get_sitestats() {
global $wpdb;
$stats = array(
'blogs' => get_blog_count(),
'users' => get_user_count(),
);
return $stats;
}
1693

February 12, 2011 


No comments yet... Be the first to leave a reply!