Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Determine if user is logged in on template


r-a-y
Participant

@r-a-y

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; ?>

Skip to toolbar