[WordPress] Custom Login, Logout Links

Problem:
How to create custom login and logout links for a WordPress Template.

Solution:
<?php
if(is_user_logged_in())
{
echo '<a class="logout" title="Logout" href="'. wp_logout_url('index.php') .'">Logout</a>';
}
else
{
echo '<a class="login" title="Login" href="'. wp_login_url('index.php') .'">Login</a>';
}
?>

Comments

Popular posts from this blog

Breaking down document locking in SharePoint

Working around X-Frame-Options for iframes

Document ID not being generated