bbp_allow_content_edit( bool $default = 1 )
Is content editing available when posting new topics & replies?
Description Description
Parameters Parameters
- $default
-
(Optional) Default value false
Default value: 1
Return Return
(bool) Is content editing allowed?
Source Source
File: includes/core/options.php
function bbp_allow_content_edit( $default = 1 ) { // Filter & return return (bool) apply_filters( 'bbp_allow_content_edit', (bool) get_option( '_bbp_allow_content_edit', $default ) ); }
Changelog Changelog
Version | Description |
---|---|
2.6.0 | Introduced. |