wp_update_network_counts() WP 3.1.0
Update the network-wide counts for the current network.
No Hooks.
Return
````. Null. Nothing.
Usage
wp_update_network_counts( $network_id );
- $network_id(int|null)
- ID of the network.
Default: current network
Changelog
Since 3.1.0 | Introduced. |
Since 4.8.0 | The $network_id parameter has been added. |
Code of wp_update_network_counts() wp update network counts WP 5.7
function wp_update_network_counts( $network_id = null ) {
wp_update_network_user_counts( $network_id );
wp_update_network_site_counts( $network_id );
}