bbp_allow_global_access( bool $default = 1 )

Is this forum available to all users on all sites in this installation?


Description Description


Parameters Parameters

$default

(Optional) Default value false

Default value: 1


Top ↑

Return Return

(bool) Is global access allowed?


Top ↑

Source Source

File: includes/core/options.php

function bbp_allow_global_access( $default = 1 ) {

	// Filter & return
	return (bool) apply_filters( 'bbp_allow_global_access', (bool) get_option( '_bbp_allow_global_access', $default ) );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.