- This topic has 7 replies, 2 voices, and was last updated 4 years, 6 months ago by
Leo.
-
AuthorPosts
-
August 28, 2017 at 12:14 pm #374879
Max
Hey
I am using the following snippet to have login/0ut and register links in my main menu.
///////////// LOGIN AND REGO ///////////////////////////////// // LOGINOUT AND REGO LINK IN MAIN MENU function add_login_logout_register_menu( $items, $args ) { if ( $args->theme_location != 'primary' ) { return $items; } if ( is_user_logged_in() ) { $items .= '<li><a href="' . wp_logout_url() . '">' . __( 'Log Out' ) . '</a></li>'; } else { $items .= '<li><a href="' . wp_login_url() . '">' . __( 'Login In' ) . '</a></li>'; $items .= '<li><a href="' . wp_registration_url() . '">' . __( 'Register' ) . '</a></li>'; } return $items; } add_filter( 'wp_nav_menu_items', 'add_login_logout_register_menu', 199, 2 ); // END LOGINOUT IN MENUI have too many tab on my navigation and so I would like to put the login/out and Register links as submenu items under a single nav tab called Members.
What tweaks to the above snippet are required to achieve this.
Thanks in advance for your help.
August 28, 2017 at 8:04 pm #375093Tom
Lead DeveloperLead DeveloperI’m not sure if it’s possible to add sub-menu items using a filter like that.
You would likely need to use a plugin.
This is the only one I could find: https://en-ca.wordpress.org/plugins/baw-login-logout-menu/
It hasn’t been updated in a while, but there’s still 40,000+ people using it.
October 1, 2021 at 10:38 am #1949699_blank
Hi, I noticed that on your website you have a nice solution with Log In link and then Log Out/Downloads links within Account menu item if a user is logged in. Do you use the plugin you mentioned in the earlier post or this is some custom code? I’d like to use the same approach.
Thanks.
October 1, 2021 at 10:42 am #1949705Leo
StaffCustomer SupportWe are using Easy Digital Downloads 🙂
October 1, 2021 at 10:45 am #1949710_blank
Hi Leo, but do you use this tool to create this Log in / Log out links in the menu? I was asking about the menu just in case.
October 1, 2021 at 3:40 pm #1949917Leo
StaffCustomer SupportOne of these plugins should help:
https://wordpress.org/plugins/login-or-logout-menu-item/
https://wordpress.org/plugins/login-logout-menu/October 2, 2021 at 3:32 am #1950147_blank
Nice, thanks!
October 2, 2021 at 10:48 am #1950664Leo
StaffCustomer SupportNo problem 🙂
-
AuthorPosts
- You must be logged in to reply to this topic.