Advertisement
designbymerovingi

Insert into BP Profile Header

Nov 4th, 2015
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. add_action( 'bp_before_profile_loop_content', 'insert_my_stuff_into_bp_header' );
  2. function insert_my_stuff_into_bp_header() {
  3.  
  4. // First we need to get the user ID of the profile
  5. $user_id = bp_displayed_user_id();
  6.  
  7. // Here you can add in anything you want and it will show up in a users profile.
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement