Info
- 3 posts
- 2 voices
- Started 2 years ago by vanesta
- Latest reply from vanesta
- This topic is not resolved
Determine if user is logged in on template
-
- Posted 2 years ago #
What is the equivalent of <?php if ( $user_ID ) : ?> on wordpress template tag for bbpress?
I want to display text when user is logged in and something else if user is not logged in
-
- Posted 2 years ago #
Hey vanesta,
Try this:
<?php if ( bb_is_user_logged_in() ) : ?> <div class="message">LOGGED IN MESSAGE</div> <?php else: ?> <div class="message">NOT LOGGED IN MESSAGE</div> <?php endif; ?> -
- Posted 2 years ago #
Thanks Ray!
-
You must log in to post.