Advertisement
designbymerovingi

Show Badge in BP History

Mar 19th, 2016
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. /**
  2.  * Show Badges in Profile Point History
  3.  * When viewing a profiles point history in BuddyPress,
  4.  * Show a users badges before the history table.
  5.  */
  6. add_action( 'mycred_bp_profile_before_history', 'mycredpro_show_badges_in_bp_history' );
  7. function mycredpro_show_badges_in_bp_history( $profile_id ) {
  8.  
  9.     echo mycred_display_users_badges( $profile_id );
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement