Title: multiple menu
Last modified: August 22, 2016

---

# multiple menu

 *  [Eneen](https://wordpress.org/support/users/eneen/)
 * (@eneen)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/multiple-menu/)
 * Hi,
 * Is it possible to use different menu setup for different domain name?
    I’d like
   to use same theme and just change menu content.
 * Best regards.
 * [https://wordpress.org/plugins/minimu/](https://wordpress.org/plugins/minimu/)

Viewing 5 replies - 1 through 5 (of 5 total)

 *  Plugin Author [shelkie](https://wordpress.org/support/users/shelkie/)
 * (@shelkie)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/multiple-menu/#post-5300925)
 * Sorry, that’s not possible right now.
 *  [maureenplacente](https://wordpress.org/support/users/maureenplacente/)
 * (@maureenplacente)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/multiple-menu/#post-5301289)
 * Hi,
 * I figure out that maybe it has change since 5 months. I actually have an existing
   website and want to add into it a microsite with a different theme and different
   header navigation menu. is it possible with this plugin?
 *  Plugin Author [shelkie](https://wordpress.org/support/users/shelkie/)
 * (@shelkie)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/multiple-menu/#post-5301290)
 * No, this plugin currently doesn’t allow each domain to have different menus
 *  [maureenplacente](https://wordpress.org/support/users/maureenplacente/)
 * (@maureenplacente)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/multiple-menu/#post-5301291)
 * Thanks,
    Do you have any advice to solve my problem? Cheers
 *  [ShaneRounce](https://wordpress.org/support/users/shanerounce/)
 * (@shanerounce)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/multiple-menu/#post-5301293)
 * You could use the same theme and switch out the menu based on a simple token 
   variable.
 * Set up a token in the MiniMU options to filter from, in this example I’ve used‘
   language’ as the token name and ‘spanish’ as the variable:
    [http://cloud.shanerounce.com/image/32160l393d1c](http://cloud.shanerounce.com/image/32160l393d1c)
 * Next, configure your menu names to work with token variables. ‘menu’ will work
   as default, ‘menu_spanish’ will work on domains with ‘spanish’ set as the language
   token variable.
    [http://cloud.shanerounce.com/image/1u1K0j3C3Q0m](http://cloud.shanerounce.com/image/1u1K0j3C3Q0m)
 * Then, drop this code where ever you want the menu to appear in your theme:
 *     ```
       <?php
       $token = MiniMU::get_token('language'); // Change language to your token variable.
       if ($token == '') { $menuToken = ''; } else { $menuToken = '_' . $token; };
       $defaults = array(
       	'menu'            => 'menu' . $menuToken,
       	'menu_class'      => 'nav-classes',
       	'echo'            => true,
       	'fallback_cb'     => 'wp_page_menu',
       	'items_wrap'      => '<ul id="%1$s" class="%2$s">%3$s</ul>'
       );
       wp_nav_menu( $defaults );
       ?>
       ```
   
 * Let me know if this works for you. 🙂

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘multiple menu’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/minimu.svg)
 * [MiniMU](https://wordpress.org/plugins/minimu/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/minimu/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/minimu/)
 * [Active Topics](https://wordpress.org/support/plugin/minimu/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/minimu/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/minimu/reviews/)

 * 5 replies
 * 4 participants
 * Last reply from: [ShaneRounce](https://wordpress.org/support/users/shanerounce/)
 * Last activity: [11 years, 1 month ago](https://wordpress.org/support/topic/multiple-menu/#post-5301293)
 * Status: not resolved