wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_update_network_counts › WordPress Function

Since3.1.0
Deprecatedn/a
wp_update_network_counts ( $network_id = null )
Parameters:
  • (int|null) $network_id ID of the network. Default is the current network.
    Required: No
    Default: null
Defined at:
Codex:
Change Log:
  • 4.8.0

Updates the network-wide counts for the current network.



Source

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