The Wayback Machine - https://webcf.waybackmachine.org/web/20140726154227/http://codex.bbpress.org:80/bbp_theme_after_forum_description/
Skip to:
Content
Pages
Categories
Search
Top
Bottom

bbp_theme_after_forum_description

Codex Home → bbp_theme_after_forum_description

Description

The ‘bbp_theme_after_forum_description’ action is used to display content after the description of the forum on forum index pages.

Where it can be found

On line 32 of

/bbp-theme-compat/bbpress/loop-single-forum.php
/bbp-themes/bbp-twentyten/bbpress/loop-single-forum.php
1
<?php do_action( 'bbp_theme_after_forum_description' ); ?>

How to use it

Since this is an action, we can use add_action to hook into it.

Sample code example

1
2
3
4
add_action( 'bbp_theme_after_forum_description', 'jc_after_forum_description' );
function jc_after_forum_description() {
     echo 'Hello world!';
}

Note: Always remember to prefix your functions to avoid conflicts!