bbp_theme_after_forum_sub_forums
Codex Home → bbp_theme_after_forum_sub_forums
Description
The ‘bbp_theme_after_forum_sub_forums’ action is used to display content after each list of sub forum links.
Where it can be found
On line 26 of
/bbp-theme-compat/bbpress/loop-single-forum.php
/bbp-themes/bbp-twentyten/bbpress/loop-single-forum.php
<?php do_action( 'bbp_theme_after_foum_sub_forums' ); ?>
How to use it
Since this is an action, we can use add_action to hook into it.
Sample code example
add_action( 'bbp_theme_after_forum_sub_forums', 'jc_after_sub_forum_list' ); function jc_after_sub_forum_list() { echo 'Hello world!'; }
Note: Always remember to prefix your functions to avoid conflicts!