Hello
I want to create a custom menu that shows the Listing Type as the parent and categories as children.

<ul>
{foreach}
<li>Listing Type
<ul>
{foreach}
<li>Category</li>
{/foreach}
</ul>
</li>
{/foreach}
</ul>