wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_is_large_user_count › Les Filtres WordPress

Depuis6.0.0
Dépréciéen/a
apply_filters( 'wp_is_large_user_count', $count > 10000, $count, $network_id )
Paramètres: (3)
  • (bool) $is_large_user_count Whether the site has a large number of users.
    Requis: Oui
  • (int) $count The total number of users.
    Requis: Oui
  • (int|null) $network_id ID of the network. `null` represents the current network.
    Requis: Oui
Défini(e) dans:
Codex:

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





Source

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