Forums
-
- Forum
- Posts
-
- Installation
- 28,499
- Troubleshooting
- 62,654
- Themes
- 10,431
- Plugins
- 15,360
- Requests & Feedback
- 14,972
- Showcase
- 3,256
-
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.