Skip to content

Instantly share code, notes, and snippets.

@bkatusic
Created March 24, 2023 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bkatusic/fb7a6e3ad231afafcfce4974f4ac4169 to your computer and use it in GitHub Desktop.
Save bkatusic/fb7a6e3ad231afafcfce4974f4ac4169 to your computer and use it in GitHub Desktop.
MainWP - Count users on Child Sites
$result = count_users();
echo 'There are ', $result['total_users'], ' total users';
foreach( $result['avail_roles'] as $role => $count ) {
echo ', ', $count, ' are ', $role, 's';
}
echo '.';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment