在我的网站中,我使用两个单独的nav\\U菜单,一个用于法律页面,另一个用于主导航栏。。。由于某些原因,主菜单的某些项目出现在辅助菜单中,即使在backoffice中,菜单是正确的
Backoffice display of the menu
Website screenshot displaying the menus:
wp query of the main menu
$argsMenu = array(\'theme_location\' => \'Main\');
<?php wp_nav_menu($argsMenu); ?>
wp_query of the secondary menu
<?php wp_nav_menu($menuSecondary = array(
\'container\' => \'div\',
\'container_class\' => \'menu__secondary__content\',
\'menu_class\' => \'menu__secondary\',
\'echo\' => true,
\'items_wrap\' => \'<div class="menu__secondary__wrap">%3$s</div>\',
\'theme_location\' => \'Seconday\',
)); ?>
提前谢谢,这是一个让我发疯的简单问题