wp_is_large_user_count

wp_is_large_user_count

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_is_large_user_count') is found 1 times:

  • /wp-includes/user.php line 1511
    1507
    1508
    1509
    1510
    1511
    1512
    1513
    1514
    1515
    1516
         * @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.
    //