Forum/Topic Description: concat custom message
-
Wordpress 4.0
bbPress 2.5.4Hi,
in the function ‘bbp_get_single_forum_description’, I would concat a message for user not logged in.I wrote:
add_action( 'bbp_get_single_forum_description', 'msg_for_user_loggedin' ); add_action( 'bbp_get_single_topic_description', 'msg_for_user_loggedin' ); function msg_for_user_loggedin( $args = '' ) { if ( !bb_is_user_logged_in() ) { $custom_msg = "You must be logged in to see all topics."; } else { $custom_msg = ""; } echo $custom_msg . bbp_get_single_forum_description( $args ); }
But it not works, why?
Thanks.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.