Is there a Tag or plugin that i can show how many members i have on my blog?
Is there a Tag or plugin that i can show how many members i have on my blog?
Taken from wpdb
<?php
$user_count = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->users;");?>
<p><?php echo 'user count is ' . $user_count; ?></p>This topic has been closed to new replies.