WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
Line | Code |
---|---|
2175 | * Filter whether to update network site or user counts when a new site is created. |
2176 | * |
2177 | * @since 3.7.0 |
2178 | * |
2179 | * @see wp_is_large_network() |
2180 | * |
2181 | * @param bool $small_network Whether the network is considered small. |
2182 | * @param string $context Context. Either 'users' or 'sites'. |
2183 | */ |
2184 | if ( ! apply_filters( 'enable_live_network_counts', $is_small_network, 'sites' ) ) |
2185 | return; |
2186 |
|
2187 | wp_update_network_site_counts(); |
2188 | } |
2189 |
|
2190 | /** |
2191 | * Update the network-wide users count. |
2192 | * |
2193 | * If enabled through the 'enable_live_network_counts' filter, update the users count |
2194 | * on a network when a user is created or its status is updated. |
2195 | * |
2196 | * @since 3.7.0 |
2197 | */ |
2198 | function wp_maybe_update_network_user_counts() { |
2199 | $is_small_network = ! wp_is_large_network( 'users' ); |
2200 |
|
2201 | /** This filter is documented in wp-includes/ms-functions.php */ |
2202 | if ( ! apply_filters( 'enable_live_network_counts', $is_small_network, 'users' ) ) |
2203 | return; |
2204 |
|
2205 | wp_update_network_user_counts(); |
2206 | } |
2207 |
|
2208 | /** |
2209 | * Update the network-wide site count. |
2210 | * |
2211 | * @since 3.7.0 |