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. Built from https://develop.svn.wordpress.org/trunk@40591 git-svn-id: http://core.svn.wordpress.org/trunk@40461 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
039d49a68a
commit
93b8b9bb4e
|
@ -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.
|
||||
*
|
||||
* @since 3.7.0
|
||||
* @since 4.8.0 The $network_id parameter has been added.
|
||||
*/
|
||||
function wp_maybe_update_network_site_counts() {
|
||||
$is_small_network = ! wp_is_large_network( 'sites' );
|
||||
function wp_maybe_update_network_site_counts( $network_id = null ) {
|
||||
$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.
|
||||
|
@ -2317,7 +2318,7 @@ function wp_maybe_update_network_site_counts() {
|
|||
if ( ! apply_filters( 'enable_live_network_counts', $is_small_network, 'sites' ) )
|
||||
return;
|
||||
|
||||
wp_update_network_site_counts();
|
||||
wp_update_network_site_counts( $network_id );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.8-alpha-40590';
|
||||
$wp_version = '4.8-alpha-40591';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue