Home › Forums › Support › Enable sidebar in BBpress topics and disable them in WP single post › Reply To: Enable sidebar in BBpress topics and disable them in WP single post
March 31, 2016 at 10:27 pm
#183335
Tom
Lead Developer
Lead Developer
Hi there,
You can do something like this:
add_filter( 'generate_sidebar_layout','generate_custom_bbpress_sidebar_layout' );
function generate_custom_bbpress_sidebar_layout( $layout )
{
// If we are on a bbpress page, set the sidebar
if ( is_bbpress() )
return 'right-sidebar';
// Or else, set the regular layout
return $layout;
}
Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/