wp_is_large_user_count

过滤钩子
apply_filters( 'wp_is_large_user_count', $count > 10000, $count, $network_id )
参数
  • (bool) $is_large_user_count Whether the site has a large number of users.
    Required:
  • (int) $count The total number of users.
    Required:
  • (int|null) $network_id ID of the network. `null` represents the current network.
    Required:
定义位置
相关勾子
wp_is_large_networkwp_insert_commentpre_user_loginwpmu_users_columnspre_user_url
相关方法
wp_is_large_user_countwp_update_user_countsget_user_countwp_schedule_update_user_countswp_is_large_networkwp_update_term_count
引入
6.0.0
弃用
-

wp_is_large_user_count:此功能检查站点是否有大量用户。如果一个站点拥有超过 10,000 个用户,则该站点被认为拥有大量用户。

根据网站的用户数量,过滤网站是否被认为是大型网站。

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

常见问题

FAQs
查看更多 >