bbp_is_large_install()
Is this a large bbPress installation?
Description Description
Return Return
(bool) True if more than 10000 users, false not
Source Source
File: includes/core/abstraction.php
function bbp_is_large_install() { // Multisite has a function specifically for this $retval = function_exists( 'wp_is_large_network' ) ? wp_is_large_network( 'users' ) : ( bbp_get_total_users() > 10000 ); // Filter & return return (bool) apply_filters( 'bbp_is_large_install', $retval ); }
Changelog Changelog
Version | Description |
---|---|
2.6.0 | Introduced. |