id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc,focuses 13597,Using the same menu in multiple theme_location resulting in duplicate ids,sushicodeur,filosofo,"I've a site using multiple menus. The menu are registered this way {{{ if ( function_exists('register_nav_menus') ) { register_nav_menus( array( 'social-top' => 'Top social menu', 'social-bottom' => 'Bottom social menu', ) ); } }}} I wish to use the same menu (named social) for the two theme locations. I call the menu with these args : {{{ '', 'theme_location' => 'social-top', // and social-bottom the next time ); wp_nav_menu($menu_args); ?> }}} Resulting in the same opening tag for the two menus (since the id is constructed using the menu slug), which is not W3C valid : {{{