Forums
-
- Forum
- Posts
-
- Installation
- 28,436
- Troubleshooting
- 62,525
- Themes
- 10,431
- Plugins
- 15,342
- Requests & Feedback
- 14,964
- Showcase
- 3,256
-
You can do it with a custom query.
Something like
$forum_id=$bbdb->get_var("SELECT forum_id FROM $bbdb->posts WHERE post_id=$post_id LIMIT 1");
where $post_id is your post id.
This will generate an extra query per page but for just editing that would be fine.