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.
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.
<?php if ( $user_ID ) : ?>
Show my link
<?php else : ?>
Hide my link
<?php endif; ?>What would I put in the "Hide my link"? Nothing?
Yep. Or this:
<?php if ( $user_ID ) : ?>
Show my link
<?php endif; ?>
Leave out the else :)
Thanks
i put this on my site and when i'm logged in it shows nothin how come?
You must log in to post.