bp_admin_repair_count_members()
Recalculate the total number of active site members.
Description Description
Source Source
File: bp-core/admin/bp-core-admin-tools.php
function bp_admin_repair_count_members() { $statement = __( 'Counting the number of active members on the site… %s', 'buddypress' ); delete_transient( 'bp_active_member_count' ); bp_core_get_active_member_count(); return array( 0, sprintf( $statement, __( 'Complete!', 'buddypress' ) ) ); }
Changelog Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |