Skip to:
Content
Pages
Categories
Search
Top
Bottom

Enable Visual Editor

Published on April 26th, 2013 by John James Jacoby

In bbPress 2.3.1, WordPress’s visual editor was turned default, as it was causing issues when switching between Visual and HTML modes in some configurations. To turn it back on, try this code snippet in a plugin or your theme’s functions.php file:

Theme Compatibility

Published on June 10th, 2012 by masonjames

bbPress 2.x has built-in theme support. All required elements such as front-end editing are included. This means that all functionality will work, even when a theme has no specific bbPress templates or code included with it. All bbPress compat can be overridden using a theme or another plugin. Check bbp-theme-compat template wrappers for what a [...]

bbp_forum_title

Published on May 21st, 2012 by Lynq

This function can be used inside template files to display the forum title. Example Usage Useful Template Functions

bbp_get_forum_reply_count

Published on May 19th, 2012 by JarretC

Description The ‘bbp_get_forum_reply_count’ function is used to return the total count of all replies to topics within a forum and sub forums How to use it $forum_id (optional) – Returns count for particular forum id $total_count (optional) – Returns total count for all replies in forum and sub forums by default and returns total count [...]

bbp_forum_reply_count

Published on May 19th, 2012 by JarretC

Description The ‘bbp_forum_reply_count’ function is used to display the total count of all replies to topics within a forum and sub forums How to use it $forum_id (optional) – Returns count for particular forum id $total_count (optional) – Returns total count for all replies in forum and sub forums by default and returns total count [...]

bbp_forum_topic_count

Published on May 19th, 2012 by JarretC

Description The ‘bbp_forum_topic_count’ function is used to display the total topic count of a forum including sub forums. How to use it $forum_id (optional) – Returns count for particular forum id $total_count (optional) – Returns the total topic count with true including sub forums or just topics within that forum with false Uses bbp_get_forum_topic_count() Sample [...]

bbp_forum_row_actions

Published on May 19th, 2012 by JarretC

Description The ‘bbp_forum_row_actions’ action is used to display content within forum topic rows for functions such as administrative shortcuts. Where it can be found Line 1137 /bbp-includes/bbp-extend-buddypress.php Line 396 and 397 /bbp-includes/bbp-forum-template.php Line 34 /bbp-theme-compat/bbpress/loop-single-forum.php How to use it Since this is an action, we can use add_action to hook into it. Sample code example [...]