Skip to content

Instantly share code, notes, and snippets.

@Tsunamijaan
Created January 5, 2019 09:18
Show Gist options
  • Select an option

  • Save Tsunamijaan/e306fd6b21e3db023478e0326848901d to your computer and use it in GitHub Desktop.

Select an option

Save Tsunamijaan/e306fd6b21e3db023478e0326848901d 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