bp_disable_blogforum_comments
Filters whether or not blog and forum activity stream comments are disabled.
Description
apply_filters( 'bp_disable_blogforum_comments', (bool) $bool_bp_get_option_bp_disable_blogforum_comments_default );
Parameters (1)
- 0. $bool_bp_get_option_bp_disable_blogforum_comments_default (bool) =>
(bool) bp_get_option( 'bp-disable-blogforum-comments', $default )
- Whether or not blog and forum activity stream comments are disabled.
Usage
- To run the hook, copy the example below.
- $bool_bp_get_option_bp_disable_blogforum_comments_default = apply_filters( 'bp_disable_blogforum_comments', $bool_bp_get_option_bp_disable_blogforum_comments_default );
- if ( !empty( $bool_bp_get_option_bp_disable_blogforum_comments_default ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_disable_blogforum_comments callback
- function filter_bp_disable_blogforum_comments( $bool_bp_get_option_bp_disable_blogforum_comments_default ) {
- // make filter magic happen here...
- return $bool_bp_get_option_bp_disable_blogforum_comments_default;
- };
- // add the filter
- add_filter( 'bp_disable_blogforum_comments', 'filter_bp_disable_blogforum_comments', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_disable_blogforum_comments', 'filter_bp_disable_blogforum_comments', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /bp-core/bp-core-options.php
- return (bool) apply_filters( 'bp_disable_blogforum_comments', (bool) bp_get_option( 'bp-disable-blogforum-comments', $default ) );