Created
January 20, 2015 20:17
-
-
Save zedd45/317addcff84c1c5fd507 to your computer and use it in GitHub Desktop.
Wordpress Login LInks for header navigation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<span class="wp-custom-login-links"> | |
<?php if(is_user_logged_in()): ?> | |
<a href="<?php echo wp_logout_url( get_permalink() ); ?>" title="Logout">Logout</a> | |
<?php endif; ?> | |
<?php if(!is_user_logged_in()): ?> | |
<a href="/login/" title="Login">Login</a> | <a href="/register/">Register</a> | |
<?php endif; ?> | |
</span> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment