Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: wp-bb, is it possible to define conditional tags for bbpress?

Might have asked what you wanted straight away. :/ So open your theme’s functions.php and add this:

function is_bbpress() {
global $bb;
return $bb ? true : false;
}

Off the top of my head, but should work anyway. Try it.

Skip to toolbar