Logout link in Menu

This topic contains 4 replies, has 3 voices, and was last updated by  Dirk 6 years, 3 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #417353

    Sergey Sh
    Expired Member
    Post count: 85

    Hello,

    Is there any way to add a logout link to the menu?

    #417359

    Guust
    Moderator
    Post count: 29970

    There is with our UsersWP plugin: https://userswp.io/
    Thanks

    #417361

    Sergey Sh
    Expired Member
    Post count: 85

    Thank you,

    but i need just logout link in my menu.
    Any ways?

    #417363

    Sergey Sh
    Expired Member
    Post count: 85
    This reply has been marked as private.
    #417414

    Dirk
    Full Member
    Post count: 390

    Something like this will toggle login/logout. Maybe some classes needs to be adapted.

    
    
    add_filter ( 'wp_nav_menu_items', 'add_loginout_menu_link', 10, 2 );
    function add_loginout_menu_link($items, $args) {
    	if ($args->theme_location == 'primary') {
    		if (is_user_logged_in ()) {
    			$items .= '<li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="' . wp_logout_url ( "/" ) . '">' . __ ( "Logout" ) . '</a></li>';
    		} else {
    			$items .= '<li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="/gd-login">' . __ ( "Login" ) . '</a></li>';
    		}
    	}
    	return $items;
    }
    
Viewing 5 posts - 1 through 5 (of 5 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket