Skip to content

Instantly share code, notes, and snippets.

@shahadat014
Created January 18, 2015 19:12
Show Gist options
  • Select an option

  • Save shahadat014/67325dc060dfd1096a83 to your computer and use it in GitHub Desktop.

Select an option

Save shahadat014/67325dc060dfd1096a83 to your computer and use it in GitHub Desktop.
logged conditional content WordPress
<?php if (is_user_logged_in() ): ?>
<a href="<?php echo wp_logout_url() ?>" title="Logout">Logout</a>
<?php else: ?>
<a href="http://example.com/wp-login.php" title="Logout">Member Login</a>
<?php endif ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment