Forums
-
- Forum
- Posts
-
- Installation
- 28,363
- Troubleshooting
- 62,095
- Themes
- 10,373
- Plugins
- 15,302
- Requests & Feedback
- 14,879
- Showcase
- 3,252
-
If you want varying HTML depending on what the forum id is, you should probably just use a conditional if/inside of one template file like so:
<?php if ($forum_id == 1) {
echo 'html1';
} elseif ($forum_id == 2) {
echo 'html2';
?>
Any other approach will probably lead to madness.
See also: WordPress.org • bbPress.org • BuddyPress.org • Matt • Blog RSS