Hey all, I want a page entitled "Sign Up For Free!" to appear in the top navigation menu only when a visitor is NOT logged in. This tab should disappear if the user logs in. I'm using Atahualpa theme latest version. Is this possible?
try this , it will help you ,please add reputation if it helps you out <?php if ( is_user_logged_in() ) {} else { ?> the login box code , or what ever you want the non logged in user must see <?php } ?> Code (markup):
<?php if ( is_user_logged_in() ) { echo "Welcome back"; } else { ?> <div style="position:fixed; top:0; left:0;">Subscribe to my blog</a> <?php }; ?>