Forums

[resolved] Show Link if Member (6 posts)

  1. nironan12
    Member
    Posted 10 months ago #

    In my sidebar, I want to show a link, if the user is logged in. If the user is not logged in or is not a member, don't show the link.

  2. roya khosravi
    Member
    Posted 10 months ago #

    <?php if ( $user_ID ) : ?>
        Show my link
    <?php else : ?>
        Hide my link
    <?php endif; ?>
  3. nironan12
    Member
    Posted 10 months ago #

    What would I put in the "Hide my link"? Nothing?

  4. Ipstenu
    Member
    Posted 10 months ago #

    Yep. Or this:

    <?php if ( $user_ID ) : ?>
        Show my link
    <?php endif; ?>

    Leave out the else :)

  5. nironan12
    Member
    Posted 10 months ago #

    Thanks

  6. Zilver
    Member
    Posted 9 months ago #

    i put this on my site and when i'm logged in it shows nothin how come?

Reply

You must log in to post.

About this Topic