pre_count_users

过滤钩子
apply_filters( 'pre_count_users', null, $strategy, $site_id )
参数
  • (null|array) $result The value to return instead. Default null to continue with the query.
    Required:
  • (string) $strategy Optional. The computational strategy to use when counting the users. Accepts either 'time' or 'memory'. Default 'time'.
    Required:
  • (int) $site_id The site ID to count users for.
    Required:
定义位置
相关勾子
pre_comment_user_ipset_current_userpre_comment_user_agentrest_comment_queryrest_insert_user
相关方法
count_userswp_count_termswp_count_siteswp_get_current_usercount_user_postswp_set_current_user
引入
5.1.0
弃用
-

pre_count_users: 这是一个过滤钩子,允许修改传递给count_users函数的参数。该钩子在count_users函数被调用之前被触发,并将参数作为一个参数传递。这个钩子可以用来修改传递给函数的参数,例如,在查询中添加额外的标准。

在运行查询前过滤用户数。
返回一个非空值,使count_users()提前返回。

$pre = apply_filters( 'pre_count_users', null, $strategy, $site_id );

常见问题

FAQs
查看更多 >