Whether the network is considered large
Whether the network has more than 5,000 users/sites instead of 10,000.
function custom_large_network( $is_large_network, $component, $count, $network_id ) { return ( $count > 5000); } add_filter( 'wp_is_large_network', 'custom_large_network', 10, 4 );