Forums

Join
bbPress Support ForumsThemesIs there a way to get the current forum #?

Info

Is there a way to get the current forum #?

  1. I'm working on some theme development for a bbpress installation, and it struck me that it would be really helpful if I could simply add to the #wrapper a class declaration like "forum-1" or the like that would identify the forum in a clear way for theming purposes.

    (I have a need to theme each forum separately to match product web sites.)

    Does anyone know if this is possible? I've spent a good amount of time digging through the functions, but I have to admit that I can't figure it out and was wondering if anyone here had any ideas. I tried searching the forum to no avail.

  2. It's very simple get_forum_id();

    <?php echo "<div id='forum-".get_forum_id()."'>"; ?>

  3. You must log in to post.