apply_filters( ‘wp_is_large_user_count’, bool $is_large_user_count, int $count, int|null $network_id )

In this article

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. null represents the current network.

Source

return apply_filters( 'wp_is_large_user_count', $count > 10000, $count, $network_id );

Changelog

VersionDescription
6.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.