Description The ‘bbp_theme_before_forum_sub_forums’ action is used to display content before each list of sub forum links. Where it can be found On line 22 of /bbp-theme-compat/bbpress/loop-single-forum.php /bbp-themes/bbp-twentyten/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 Note: Always remember to prefix your functions to […]
bbp_theme_before_forum_sub_forums
Published on May 19th, 2012 by Jarretbbp_theme_before_forum_title
Published on May 18th, 2012 by JarretDescription The ‘bbp_theme_before_forum_title’ action is used to display content before each forum title on the forum index pages. Where it can be found On line 16 of /bbp-theme-compat/bbpress/loop-single-forum.php /bbp-themes/bbp-twentyten/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 Note: Always remember to prefix your […]
bbp_theme_after_forum_title
Published on May 18th, 2012 by JarretDescription The ‘bbp_theme_after_forum_title’ action is used to display content after each forum title on the forum index pages. Where it can be found On line 20 of /bbp-theme-compat/bbpress/loop-single-forum.php /bbp-themes/bbp-twentyten/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 Note: Always remember to prefix your […]
bbp_loaded
Published on February 5th, 2012 by John James JacobyThe ‘bbp_loaded’ action is hooked onto WordPress’s ‘plugins_loaded’ action with default priority 10 in: /includes/core/actions.php It’s one of several ‘piggy-back’ actions intended to help load code only when bbPress is active. It’s used to execute code early in the WordPress load order. How it's hooked Where it's used