wp_maybe_update_network_site_counts() WordPress Function
The wp_maybe_update_network_site_counts() function is a utility function that updates the count of sites for a network. If the network has changed since the last time the counts were updated, then this function will update the site counts.
wp_maybe_update_network_site_counts( int|null $network_id = null ) #
Updates the count of sites for the current network.
Description
If enabled through the ‘enable_live_network_counts’ filter, update the sites count on a network when a site is created or its status is updated.
Parameters
- $network_id
(int|null)(Optional)ID of the network. Default is the current network.
Default value: null
Source
File: wp-includes/ms-functions.php
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.
*
* @since 3.7.0
*
* @see wp_is_large_network()
*
* @param bool $small_network Whether the network is considered small.
* @param string $context Context. Either 'users' or 'sites'.
*/
if ( ! apply_filters( 'enable_live_network_counts', $is_small_network, 'sites' ) ) {
return;
}
wp_update_network_site_counts( $network_id );
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 4.8.0 | The $network_id parameter has been added. |
| 3.7.0 | Introduced. |