-11

I'm using wordpress and bbPress to write a forum. I have to display an element on this site before header, but only when current site is forum. How can I check if this site is forum ?

Mohammad
  • 21,175
  • 15
  • 55
  • 84
user3061714
  • 99
  • 1
  • 9

1 Answers1

0

You Can use is_bbpress() and check if page use bbpress. Example

if ( class_exists('bbPress') ) {
     if ( bbp_is_forum_archive() ) {

            echo 'You are on the Support Forums Archives. These are all the forums.';

     }
}
LTasty
  • 2,008
  • 14
  • 22