Multisite: Add $network_id parameter to wp_maybe_update_network_site_counts().

This allows calling the function for a specific network correctly, for example after a site has been created for it or been removed from it.

Fixes #40384. See #38699.


git-svn-id: https://develop.svn.wordpress.org/trunk@40591 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Felix Arntz 2017-05-09 15:59:39 +00:00
parent 1515787d31
commit 28d82148db

View File

@ -2300,9 +2300,10 @@ function wp_update_network_counts( $network_id = null ) {
* on a network when a site is created or its status is updated. * on a network when a site is created or its status is updated.
* *
* @since 3.7.0 * @since 3.7.0
* @since 4.8.0 The $network_id parameter has been added.
*/ */
function wp_maybe_update_network_site_counts() { function wp_maybe_update_network_site_counts( $network_id = null ) {
$is_small_network = ! wp_is_large_network( 'sites' ); $is_small_network = ! wp_is_large_network( 'sites', $network_id );
/** /**
* Filters whether to update network site or user counts when a new site is created. * Filters whether to update network site or user counts when a new site is created.
@ -2317,7 +2318,7 @@ function wp_maybe_update_network_site_counts() {
if ( ! apply_filters( 'enable_live_network_counts', $is_small_network, 'sites' ) ) if ( ! apply_filters( 'enable_live_network_counts', $is_small_network, 'sites' ) )
return; return;
wp_update_network_site_counts(); wp_update_network_site_counts( $network_id );
} }
/** /**