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 ?
Asked
Active
Viewed 168 times
-11

Mohammad
- 21,175
- 15
- 55
- 84

user3061714
- 99
- 1
- 9
-
What is your bbPress url? – cagri Aug 12 '15 at 14:57
1 Answers
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