Skip to:
Content
Pages
Categories
Search
Top
Bottom

bbp_theme_after_forum_freshness_link

Codex Home → bbp_theme_after_forum_freshness_link

Description

The ‘bbp_theme_after_forum_freshness_link’ action is used to display content after the forum freshness link

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_freshness_link', 'jc_after_forum_freshness_link' );
function jc_after_forum_freshness_link() {
     echo 'Hello world!';
}

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

Skip to toolbar