Skip to content
Advertisement

css in the menu does not work because the id is pushed into the wrong container

i want to use this code in wordpress. The first code shows the working code. The second code shows how it is displayed in WordPress when I use this position <?php wp_nav_menu (array ('menu_id' => 'main-nav',)); ?> it is packed in the ul but it has to be represented as above around the code in the surrounding container.

  1. Code

JavaScript
JavaScript
JavaScript
  1. Code

JavaScript

this is the code that is output when the php code is placed in the desired position. Wrong: <div class = "menu-top-menu-container"><ul id = "main-nav" class = "menu"> Correct: <div id = "main-nav" class = "menu-top-menu-container"><ul class = "menu"> This is what the code should look like . the code would work in the surrounding container

Advertisement

Answer

  1. Replace menu_id to container_id.
  2. Change menu_id value menu-top-menu.
  3. Finale code <?php wp_nav_menu( [ 'container_id' => 'main-nav', 'menu_id' => 'menu-top-menu'] ); ?>

Source : https://developer.wordpress.org/reference/functions/wp_nav_menu/

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement