wpseek.com
				A WordPress-centric search engine for devs and theme authors
			wp_maybe_update_network_site_counts_on_update › WordPress Function
Since5.1.0
Deprecatedn/a
› wp_maybe_update_network_site_counts_on_update ( $new_site, $old_site = null )
| Parameters: (2) | 
 | 
| Defined at: | 
 | 
| Codex: | 
Updates the count of sites for a network based on a changed site.
Source
function wp_maybe_update_network_site_counts_on_update( $new_site, $old_site = null ) {
	if ( null === $old_site ) {
		wp_maybe_update_network_site_counts( $new_site->network_id );
		return;
	}
	if ( $new_site->network_id !== $old_site->network_id ) {
		wp_maybe_update_network_site_counts( $new_site->network_id );
		wp_maybe_update_network_site_counts( $old_site->network_id );
	}
}