Forums

Join
bbPress Support ForumsThemesDetermine if user is logged in on template

Info

Determine if user is logged in on template

  1. 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

  2. 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; ?>
  3. Thanks Ray!

  4. You must log in to post.