Detect if user is viewing their own profile?
-
I want to show text in the member header that welcomes the user if they’re viewing their own profile. So when looking at their own profile, it says “Welcome, [name]!”, and if they view another user’s profile, it just says [name] in the same spot.
I have it so the system checks if the user is logged in, but I need to take it one step further to check if the profile matches the logged in user.
Here’s what I have now (php calls removed because I can’t get backticks to work):
if ( is_user_logged_in() ) :
Welcome,
endif;
bp_displayed_user_fullname()
How can I change that first if statement to check the logged in user’s identity against the active profile page?
- The topic ‘Detect if user is viewing their own profile?’ is closed to new replies.