Adding items to a menu

//***********************************************************
//***********************************************************
//********** ADD LOG IN / LOG OUT TO THE MAIN MENU **********
//***********************************************************
//***********************************************************
add_filter( 'wp_nav_menu_items', 'wp_nav_menu_items_loginout_menu_link', 10, 2 );
function wp_nav_menu_items_loginout_menu_link( $items, $args )
{
  //print_r($args);
  if ($args->menu->name == 'Menu-Header')     //<<<The name you have used for the menu
  {
    if (is_user_logged_in())
        $items .= '<li><a href="/log-out">'. __("Log Out") .'</a></li>';     //<<<Log out URL (you can use wp_logout_url() or your own link
    else
        $items .= '<li><a href="'. wp_login_url(get_permalink()) .'">'. __("Log In") .'</a></li>';    //<<<Log out URL (you can use wp_login_url(get_permalink()) or your own link
  }
  return $items;
}

USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *