Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre_count_users

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1080       * Return a non-null value to cause count_users() to return early.
1081       *
1082       * @since 5.1.0
1083       *
1084       * @param null|string $result   The value to return instead. Default null to continue with the query.
1085       * @param string      $strategy Optional. The computational strategy to use when counting the users.
1086       *                              Accepts either 'time' or 'memory'. Default 'time'.
1087       * @param int|null    $site_id  Optional. The site ID to count users for. Defaults to the current site.
1088       */
1089      $pre = apply_filters( 'pre_count_users', null, $strategy, $site_id );
1090
1091      if ( null !== $pre ) {
1092           return $pre;
1093      }
1094
1095      $blog_prefix = $wpdb->get_blog_prefix( $site_id );
1096      $result      = array();
1097
1098      if ( 'time' === $strategy ) {