bp_core_get_total_member_count()

Return the total number of members for the installation.

Description

Note that this is a raw count of non-spam, activated users. It does not account for users who have logged activity (last_active). See bp_core_get_active_member_count().

Return

(int) The total number of members.

Source

File: bp-members/bp-members-functions.php

617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
function bp_core_get_total_member_count() {
    global $wpdb;
 
    $count = wp_cache_get( 'bp_total_member_count', 'bp' );
 
    if ( false === $count ) {
        $status_sql = bp_core_get_status_sql();
        $count = $wpdb->get_var( "SELECT COUNT(ID) FROM {$wpdb->users} WHERE {$status_sql}" );
        wp_cache_set( 'bp_total_member_count', $count, 'bp' );
    }
 
    /**
     * Filters the total number of members for the installation.
     *
     * @since BuddyPress 1.2.0
     *
     * @param int $count Total number of members.
     */
    return apply_filters( 'bp_core_get_total_member_count', $count );
}

Changelog

Changelog
Version Description
BuddyPress 1.2.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.