bb_option_<option>
Echoes the requested bbPress option by calling bb_get_option().
Description
Parameters (1)
- 0. $bb_get_option (string) =>
bb_get_option( $option )
- The option to be echoed
Usage
- To run the hook, copy the example below.
- $bb_get_option = apply_filters( 'bb_option_{$option}', $bb_get_option );
- if ( !empty( $bb_get_option ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bb_option_<option> callback
- function filter_bb_option_option( $bb_get_option ) {
- // make filter magic happen here...
- return $bb_get_option;
- };
- // add the filter
- add_filter( "bb_option_{$option}", 'filter_bb_option_option', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( "bb_option_{$option}", 'filter_bb_option_option', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /bp-forums/bbpress/bb-includes/functions.bb-meta.php
- echo apply_filters( 'bb_option_' . $option, bb_get_option( $option ) );