wp_update_network_counts()WP 3.1.0

Updates the network-wide counts for the current network.

No Hooks.

Return

null. Nothing (null).

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.

wp_update_network_counts() code WP 6.5.2

function wp_update_network_counts( $network_id = null ) {
	wp_update_network_user_counts( $network_id );
	wp_update_network_site_counts( $network_id );
}