Add login and logout links to buddypress main nav

Welcome mkmcst community Forum Web programming WordPress buddypress Add login and logout links to buddypress main nav

Viewing 0 reply threads
  • Author
    Posts
    • #756
      Michael Mc
      Keymaster
      @mkmcst
       // functions.php
      function add_login_logout_link($items, $args)
      {
        if(is_user_logged_in())
        {
          $newitems = '<li><a title="Logout" href="'. wp_logout_url('index.php') .'">Logout</a></li>';
          $newitems .= $items;
        }
        else
        {
          $newitems = '<li><a title="Login" href="'. wp_login_url('index.php') .'">Login</a></li>';
          $newitems .= $items;
        }
        return $newitems;
      }
      add_filter('wp_nav_menu_items', 'add_login_logout_link', 10, 2);
Viewing 0 reply threads
  • You must be logged in to reply to this topic.