Skip to main content

Login/Logout In the Menu

Home Forums WordPress Login Login/Logout In the Menu

Tagged: , ,

Viewing 0 reply threads
  • Author
    Posts
    • #2491

      Layer7web
      Keymaster
      add_filter( 'wp_nav_menu_items', 'wti_loginout_menu_link', 10, 2 );
      function wti_loginout_menu_link( $items, $args ) {
      	if (is_user_logged_in()) {
      		$items .= '<li class="right"><a href="'. wp_logout_url() .'">'. __("LogOut") .'</a></li>';
      	}
      	return $items;
      }
      • This topic was modified 9 years, 4 months ago by Layer7web.
Viewing 0 reply threads

You must be logged in to reply to this topic.