Create Dropdown menu Using wp_nav_menu() function

admin2025-01-08  3

Kindly provide me wp_nav_menu structure to create the following dropdown menu.

<div class="container">
<div class="nav-menu">
<a class="toggleMenu" href="#">Menu</a>
<ul class="nav">
    <li class="test"><a href="#">Home </a></li>
    <li class="test"><a href="#">About  </a></li>
    <li><a href="#">Service</a>
        <ul class="music-dropdown-menu">
          <li><a href="#">Category1</a></li>
          <li><a href="#">Category2</a></li>
          <li><a href="#">Category3</a></li>
          <li><a href="#">Category4</a></li>
          <li><a href="#">Category5</a></li>
        </ul>
    </li>
    <li><a href="#">Why us</a></li>
    <li><a href="#"> Career</a></li>
    <li><a href="#">Contact</a></li>
</ul>
</div>
</div>

******May be, this type of question already answered, but I cannot understand. Kindly help me.

Kindly provide me wp_nav_menu structure to create the following dropdown menu.

<div class="container">
<div class="nav-menu">
<a class="toggleMenu" href="#">Menu</a>
<ul class="nav">
    <li class="test"><a href="#">Home </a></li>
    <li class="test"><a href="#">About  </a></li>
    <li><a href="#">Service</a>
        <ul class="music-dropdown-menu">
          <li><a href="#">Category1</a></li>
          <li><a href="#">Category2</a></li>
          <li><a href="#">Category3</a></li>
          <li><a href="#">Category4</a></li>
          <li><a href="#">Category5</a></li>
        </ul>
    </li>
    <li><a href="#">Why us</a></li>
    <li><a href="#"> Career</a></li>
    <li><a href="#">Contact</a></li>
</ul>
</div>
</div>

******May be, this type of question already answered, but I cannot understand. Kindly help me.

Share Improve this question edited Dec 29, 2017 at 16:43 fuxia 107k38 gold badges255 silver badges459 bronze badges asked Dec 29, 2017 at 11:58 Arnab ChatterjeeArnab Chatterjee 552 silver badges7 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

wp_nav_menu() function does not need the listed items ..

Just add the wp_nav_menu() function in the 'nav' tag and then add the menu items from the Appearance >> Menu section available in the dashboard

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1736266434a1120.html

最新回复(0)