bbp_allow_anonymous( bool $default )
Is the anonymous posting allowed?
Description Description
Parameters Parameters
- $default
-
(Optional) Default value
Return Return
(bool) Is anonymous posting allowed?
Source Source
File: includes/core/options.php
function bbp_allow_anonymous( $default = 0 ) { // Filter & return return apply_filters( 'bbp_allow_anonymous', (bool) get_option( '_bbp_allow_anonymous', $default ) ); }
Changelog Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |