bp_use_theme_compat_with_current_theme
Filters whether or not to use theme compat for the active theme.
Description
Parameters (1)
- 0. $buddypress (bool) =>
buddypress()->theme_compat->use_with_current_theme
- True if the current theme needs theme compatibility.
Usage
- To run the hook, copy the example below.
- $buddypress = apply_filters( 'bp_use_theme_compat_with_current_theme', $buddypress );
- if ( !empty( $buddypress ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_use_theme_compat_with_current_theme callback
- function filter_bp_use_theme_compat_with_current_theme( $buddypress ) {
- // make filter magic happen here...
- return $buddypress;
- };
- // add the filter
- add_filter( 'bp_use_theme_compat_with_current_theme', 'filter_bp_use_theme_compat_with_current_theme', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_use_theme_compat_with_current_theme', 'filter_bp_use_theme_compat_with_current_theme', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /bp-core/bp-core-theme-compatibility.php
- return apply_filters( 'bp_use_theme_compat_with_current_theme', buddypress()->theme_compat->use_with_current_theme );