Skip to:
Content
Pages
Categories
Search
Top
Bottom

bbp_theme_after_topic_author

Codex Home → bbp_theme_after_topic_author

Description

The ‘bbp_theme_after_topic_author’ action is used to display content after the author’s avatar and name in a forum

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

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

Skip to toolbar