On this page
apply_filters( 'wp_is_large_user_count', bool $is_large_user_count, int $count, int|null $network_id )
Filters whether the site is considered large, based on its number of users.
Parameters
$is_large_user_countbool-
Whether the site has a large number of users.
$countint-
The total number of users.
$network_idint|null-
ID of the network.
nullrepresents the current network.
Source
File: wp-includes/user.php. View all references
return apply_filters( 'wp_is_large_user_count', $count > 10000, $count, $network_id );
Related
Used By
| Used By | Description |
|---|---|
| wp_is_large_user_count() wp-includes/user.php | Determines whether the site has a large number of users. |
Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/wp_is_large_user_count