IBEX
  • Home
  • Tech Department
  • Software Developers
  • Electronic Designers
  • Product Design
☰
  • Home
  • Tech Department
  • Software Developers
  • Electronic Designers
  • Product Design
  • Web & Cloud Development
  • AI Integration
  • Mobile App Development
  • FAQ
  • About Us
  • Contact Us
  • Portfolio
  • Resources
  • Under the Hood
  • News

WordPress Websites

Our resources for other developers, designers and engineers.

WordPress Websites

Menu Log In / Log Out

/Page Builders / Elementor / Users / User signup and login / Menu Log In / Log Out

Adding a menu item using code

//***********************************************************
//***********************************************************
//********** 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;
}

open all | close all

❯ Other IBEX Resources

  • Other IBEX Resource Sites
Home | Terms & Conditions | Privacy Policy
© Copyright IBEX Technology Ltd. All rights reserved. IBEX is a registered trademark of IBEX Technology Ltd.
Footer Logo