WordPress and buddypress programming

@mention Username Under bbPress User Avatars

Tagged: 

Viewing 0 reply threads
  • Author
    Posts
    • #3393
      Michael Mc
      Keymaster
      @mkmcst

      Are you looking for a way to display a user @mention name directly below their avatar within a bbPress forum topic? While there’s probably a plugin for this, we have created a quick code snippet that you can use to add @mention username under bbPress user avatars.

      function wps_at_mention(){
          echo '<span class="bbp-user-nicename"><span class="handle-sign">@</span>'. bp_core_get_username(bbp_get_reply_author_id(bbp_get_reply_id())) .'</span>' ;
      }
      add_action( 'bbp_theme_after_reply_author_details', 'wps_at_mention' );
Viewing 0 reply threads
  • You must be logged in to reply to this topic.