On this page
apply_filters( 'wp_is_large_network', bool $is_large_network, string $component, int $count, int $network_id )
Filters whether the network is considered large.
Parameters
$is_large_networkbool-
Whether the network has more than 10000 users or sites.
$componentstring-
The component to count. Accepts
'users', or'sites'. $countint-
The count of items for the component.
$network_idint-
The ID of the network being checked.
Source
File: wp-includes/ms-functions.php. View all references
return apply_filters( 'wp_is_large_network', $is_large_network, 'users', $count, $network_id );
Related
Used By
| Used By | Description |
|---|---|
| wp_is_large_network() wp-includes/ms-functions.php | Determines whether or not we have a large network. |
Changelog
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/wp_is_large_network