wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_is_large_user_count › WordPress Filter Hooks

Seit6.0.0
Veraltetn/v
apply_filters( 'wp_is_large_user_count', $count > 10000, $count, $network_id )
Parameter: (3)
  • (bool) $is_large_user_count Whether the site has a large number of users.
    Erforderlich: Ja
  • (int) $count The total number of users.
    Erforderlich: Ja
  • (int|null) $network_id ID of the network. `null` represents the current network.
    Erforderlich: Ja
Definiert in:
Codex:

Filters whether the site is considered large, based on its number of users.





Quellcode

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