wp_is_large_user_count

wp_is_large_user_count

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('wp_is_large_user_count') is found 1 times:

  • /wp-includes/user.php line 1479
    	 * @param bool     $is_large_user_count Whether the site has a large number of users.
    	 * @param int      $count               The total number of users.
    	 * @param int|null $network_id          ID of the network. `null` represents the current network.
    	 */
    	return apply_filters( 'wp_is_large_user_count', $count > 10000, $count, $network_id );
    }
    
    //
    // Private helper functions.
    //