I need the nav menu structure like the following.
<ul class="side-menu-list">
<li><a href="#">Parent Page 1</a>
<ul>
<li><a href="#">Traditional Braces</a></li>
<li><a href="#">Lingual Braces</a></li>
<li><a href="#">Invisalign</a></li>
<li><a href="#">Temporary Anchorage Devices</a></li>
<li><a href="#">Surgical Orthodontics</a></li>
<li><a href="#">TMJ Treatment</a></li>
<li><a href="#">All About Retainers</a></li>
<li><a href="#">Emergency Treatment</a></li>
</ul>
</li>
</ul>
<ul class="side-menu-list">
<li><a href="#">Paent Page 2</a>
<ul>
<li><a href="#">Early Treatment/Prevention</a></li>
<li><a href="#">Two-Phase Treatment</a></li>
<li><a href="#">Hometown Smiles Gallery</a></li>
</ul>
</li>
</ul>
Which means every parent page and its sub pages should be wrapped in a ul. So iam looking for a custom walker menu so that every main menu and its sub menus will be wrapped in a ul tag dynamically.