Place below code in your WordPress template where you want to display the total number of members.
<?php $total_members = $wpdb->get_var("SELECT COUNT(ID) FROM $wpdb->users"); echo $total_members." Total Members."; ?> |
Place below code in your WordPress template where you want to display the total number of members.
<?php $total_members = $wpdb->get_var("SELECT COUNT(ID) FROM $wpdb->users"); echo $total_members." Total Members."; ?> |