Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPB Cup
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

How to Show Different Menus to Logged in Users in WordPress

Editorial Note: We earn a commission from partner links on WPBeginner. Commissions do not affect our editors' opinions or evaluations. Learn more about Editorial Process.

WordPress displays the same navigation menu for everyone. However, you might want to customize the menu based on whether a user is logged in or not.

Showing different menus to logged-in users in WordPress is a great way to create a more personalized experience. It allows you to display relevant content only to those who are logged in, such as account details or exclusive resources.

In this guide, we will explain how to set up different menus for logged-in users using 2 methods.

Showing different navigtion menus to logged in and non-logged in users in WordPress

Why Show Different Menus to Logged in Users in WordPress?

Changing different areas of your WordPress website based on your visitors and their activity makes your site feel personalized for each user.

This personalized content helps you improve the user experience on your WordPress website.

Now, if you run a website where users don’t need to register or log in, then you can probably use the same navigation menus across your website. However, other websites may greatly benefit from showing custom menus to logged-in users.

For instance, websites like an online store, an online learning platform, or a WordPress membership site community, can all benefit from personalized navigation menus.

A personalized navigation menu for logged-in users helps them more easily find things they signed up for.

For instance, a user on an online store can manage their account, or a member of a paid community can easily renew their subscription or view the exclusive online courses they purchased.

By default, WordPress lets you create as many navigation menus as you want. However, you can only choose to show one menu at a particular location in your WordPress theme.

Before setting up menus for logged-in users, you’ll first need to create two separate navigation menus. One menu will be for logged-in users, and the other for logged-out users. Let’s get started.

Just a quick note! The methods we are sharing are designed for people using WordPress classic themes. If you’re using a block theme with Full Site Editing (FSE) features from WordPress 5.8 and onward, this method might not work. 

Creating Menus for Logged in and Non Logged in Users in WordPress

To create separate menus for the two types of users, you’ll want to head over to the Appearance » Menus page in the WordPress dashboard.

If you already have a navigation menu that you use on your website for all users, then this can be your default menu.

Main menu

After that, you can click on the ‘create a new menu’ link to create a new custom menu for your logged-in users.

Here, go ahead and add menu items that you want to show to registered or logged-in users. For example, you might want to add a logout link to your menu.

On the left-hand side of the screen, you can see a list of your website pages. Simply check the box next to any page you want to add to your menu and click the ‘Add to Menu’ button.

Logged in menu

You can also drag and drop the menu items on the right side of the screen to rearrange them.

Further down the page, you can choose a location to display your menu. But you don’t need to assign a location to this menu now. We’ll do that later in the article.

Don’t forget to click on the ‘Save Menu’ button to store your changes.

For more details on creating menus, take a look at our beginner’s guide to WordPress navigation menus.

Now, you’re ready to show different menus to logged-in users. Here’s a quick overview of all the methods we’ll cover in this guide:

Let’s dive into the first method.

Method 1. Show Different Menus to Logged-in Users in WordPress Using a Plugin

The easiest way to show different menus to logged-in users is to use the Conditional Menus plugin. So, let’s install and activate it first.

For more details, you can see our step-by-step guide on how to install a WordPress plugin.

Upon activation, you’ll need to navigate to Appearance » Menus from your WordPress dashboard. Then, switch to the ‘Manage Locations’ tab.

From here, you’ll see the list of available menu locations defined in your WordPress theme and the menus that are currently displaying.

For example, our ‘Primary Menu’ location currently shows a ‘Main Menu’.

Manage menu locations

Now, we need to tell the plugin to show a different menu when a certain condition is matched.

To do that, let’s click on the ‘+ Conditional Menu’ link. Then, you can select the navigation menu you want to show to the logged-in users from the drop-down menu.

Select logged in menu

Next, you’ll want to click the ‘+ Conditions’ link.

This will bring up a popup where you’ll see a bunch of conditions to choose from.

Select logged in user aa the condition

Simply check the box next to the ‘User logged in’ option, and then click on the ‘Save’ button.

You can now visit your website to see the logged-in user menu in action. You can also log out of your WordPress admin to view the navigation menu that’ll be shown to all other users.

Different menu for logged in users

Method 2. Manually Select the Logged-in Menu in WordPress Using Code

This method requires you to add code to your WordPress website. If you haven’t done this before, then take a look at our guide on how to copy and paste code snippets in WordPress.

In general, you need to add a code snippet to your theme’s functions.php file or a site-specific plugin. However, we don’t recommend this method because it can potentially cause issues with your website.

Instead, you can use the WPCode plugin.

WPCode lets you add custom code snippets to your site without editing the theme’s files directly. It also helps manage these snippets and ensures they are executed safely, minimizing the risk of breaking your site.

To get started, let’s install the WPCode plugin. You can use the WPCode free version, as it has all the things you need to do show different menus to logged-in users.

Once installed, you’ll want to navigate to Code Snippets » + Add Snippets.

Add Snippet button in WPCode

This will open the WPCode’s code snippet gallery.

From here, you can click the ‘+ Add Custom Snippet’ button.

Add Custom Snippet button in WPCode

You’ll then arrive at the WPCode’s text editor.

The next step is to add a title to your code snippet and choose ‘HTML snippet’ from the ‘Code Type’ dropdown menu.

Adding snippet title and choosing code type in WPCode

Once done, simply copy and paste the following code to the ‘Code Preview’ field:

function my_wp_nav_menu_args( $args = '' ) {
if( is_user_logged_in() ) {
// Logged in menu to display
$args['menu'] = 43;

} else {
// Non-logged-in menu to display
$args['menu'] = 35;
}
return $args;
}
add_filter( 'wp_nav_menu_args', 'my_wp_nav_menu_args' );

Here’s what it might look like in your WPCode editor:

The custom HTML snippet in WPCode's Code Preview

Make sure that you replace 43 and 35 with the IDs for the navigation menus you created earlier.

You can find the ID of a navigation menu by selecting it on the ‘Menus’ page. You will see the menu ID number in your browser’s address bar.

Find navigation menu ID

Once you make sure all details are correct, go ahead and click the blue ‘Save Snippet’ button.

And that’s it! We hope this article has helped you learn how to easily show different navigation menus to logged-in users in WordPress. Next, you may also want to see our guide on how to allow users to invite their friends to register in WordPress and how to style WordPress navigation menus.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

Disclosure: Our content is reader-supported. This means if you click on some of our links, then we may earn a commission. See how WPBeginner is funded, why it matters, and how you can support us. Here's our editorial process.

Editorial Staff

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

The Ultimate WordPress Toolkit

Get FREE access to our toolkit - a collection of WordPress related products and resources that every professional should have!

Reader Interactions

99 CommentsLeave a Reply

  1. Syed Balkhi says

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

  2. Clara says

    Works great! I have the problem that I have to menus at the top: A headliner menu and the main menu. When I use the Code and the user is logged in bove menus switch to the logged-in menu. How can I adjust the code so that the headliner menu remains the same?

  3. Echo says

    Would be much easier if you could do it for a specific menu item rather than an entire menu. What would someone with 499 menu items have to do?

    • WPBeginner Support says

      We would not recommend that many menu items as that would be far too many for someone to navigate through which would likely cause an SEO issue if your menu links don’t add value for your visitors

      Admin

  4. Evaldo Santos says

    100%. Just configured it with Sahifa Theme and works like a charm.

    Keep up with this good work.

  5. Bk Millanzi says

    this is so helpful, but is there a way to display a username and avatar which can act as a container of other profile menu items, as a drop-down menu?

  6. Amarnadh says

    The path you showed is well and good only for just showing custom menus. But what if i want to show my content to a specific logged in user based on his interests. That is in detail, like various deals sites, when we login and save our interests, the next moment we see deals only on that specific topic. Can we make that possible using WordPress plugins.

  7. Sam says

    Hey there, thanks for the great work. I have a question about multiple user roles.

    So I have two main menus, Menu 1 and Menu 2.

    I would like all users (logged in or out) to see the main menu unless they have the userole of “Alt”, in which case Menu 1 is replaced by Menu 2.

    How would I go about doing that?

  8. Curtis says

    @ERICLEE You can create a child theme to prevent that from happening. I just added this code and need to do the same thing.

  9. shahzaib sarwer says

    can it possible to add the menus in the subscriber profile accept than the home page these menu pages not show on the home page, just on the every subscriber profile. if it possible then please guide me, and tell me how use any pluging for this.

  10. shahzaib sarwer says

    can it possible to add the menus in profile of the subscriber in wp site , if it possible so please anyone guide me what i do and how use any pluging of this work.

  11. Yuda says

    How can the same be achieeved on a multi-language members site? For example show different menu for users logged in in english and a different menu for users logged in with german?

Leave A Reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.