Advertisement
Guest User

r-a-y

a guest
Jul 12th, 2010
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function bp_is_my_profile() {
  2. global $bp;
  3.  
  4. if ( is_user_logged_in() && $bp->loggedin_user->id == $bp->displayed_user->id )
  5. $my_profile = true;
  6. else
  7. $my_profile = false;
  8.  
  9. return apply_filters( 'bp_is_my_profile', $my_profile );
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement