Advertisement
arnabkumar

Logged User Only WP

Mar 28th, 2014
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. Logged User Only Wordpress
  2.  
  3.     <?php if (is_user_logged_in() ): ?>
  4.             <a href="<?php echo wp_logout_url() ?>" title="Logout">Logout</a>
  5.     <?php else: ?>
  6.             <a href="http://example.com/wp-login.php" title="Logout">Member Login</a>
  7.     <?php endif ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement