wp_update_user_counts()
Updates the total count of users on the site.
No Hooks.
Returns
true|false. Whether the update was successful.
Usage
wp_update_user_counts( $network_id );
- $network_id(int|null)
- ID of the network.
Default:current network
Notes
- Global. wpdb.
$wpdbWordPress database abstraction object.
Changelog
| Since 6.0.0 | Introduced. |
wp_update_user_counts() wp update user counts code WP 6.9.1
function wp_update_user_counts( $network_id = null ) {
global $wpdb;
if ( ! is_multisite() && null !== $network_id ) {
_doing_it_wrong(
__FUNCTION__,
sprintf(
/* translators: %s: $network_id */
__( 'Unable to pass %s if not using multisite.' ),
'<code>$network_id</code>'
),
'6.0.0'
);
}
$query = "SELECT COUNT(ID) as c FROM $wpdb->users";
if ( is_multisite() ) {
$query .= " WHERE spam = '0' AND deleted = '0'";
}
$count = $wpdb->get_var( $query );
return update_network_option( $network_id, 'user_count', $count );
}