Forums
-
- Forum
- Posts
-
- Installation
- 28,398
- Troubleshooting
- 62,311
- Themes
- 10,391
- Plugins
- 15,314
- Requests & Feedback
- 14,932
- Showcase
- 3,253
-
There already is a function is_front()
if (is_front()) {
// do stuff
}
lots of related functions in template-functions.php
if you need multiple pages, a trick I like to use is
if (in_array(bb_get_location(),array('topic-page','tag-page','forum-page'))) {
// do stuff
}