Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

How to Add Login/Logout Link to Navigation Menu in WordPress

In this tutorial, I will explain how to add a logout link to navigation menu in WordPress. Want to add the login/Logout link in WordPress front-end site, so that logged in users can log out by using that link and if they not logged in in the website, then they can login by using the login link?

Keep your eye on this tutorial as I am going to share a very easy and simple WordPress snippets which allow you to add the login/logout link in the Navigation Menu.

How to Add Logout Link to Navigation Menu in WordPress

You can achieve this by using the wp_nav_menu_items() hook. Let’s have a look at the following piece of WordPress code which will add the login/logout link on your primary navigation menu.

Add the below code at the end of your functions.php file and save it.

theme_location == 'primary') {
        // Check user login status
        if (!is_user_logged_in()) {
            // Add login link if user not logged in
            $items .= '
  • Log In
  • '; } else { // Add login link if user logged in $items .= '
  • Log Out
  • '; } } return $items; } ?>

    Liked this tutorial? Do Like & share with your friends

    The post How to Add Login/Logout Link to Navigation Menu in WordPress appeared first on FreeWebMentor.



    This post first appeared on Programming Blog Focused On Web Technologies, please read the originial post: here

    Share the post

    How to Add Login/Logout Link to Navigation Menu in WordPress

    ×

    Subscribe to Programming Blog Focused On Web Technologies

    Get updates delivered right to your inbox!

    Thank you for your subscription

    ×