WordPress Version: 6.1
/**
* Updates the network-wide counts for the current network.
*
* @since 3.1.0
* @since 4.8.0 The `$network_id` parameter has been added.
*
* @param int|null $network_id ID of the network. Default is the current network.
*/
function wp_update_network_counts($network_id = null)
{
wp_update_network_user_counts($network_id);
wp_update_network_site_counts($network_id);
}