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