I am currently working on styling my WordPress sub menu list items using HTML. I have written the HTML code that I want to use, but I am not sure how to incorporate it into the wp_nav_menu() function. Can you assist me with this?
<ul class="menu">
<li class="has_children"><a>Games</a>
<ul class="sub-menu">
<div class="column"> <!-- this line needs adding -->
<li>
<h4>Games</h4>
<ul>
<li><a href="#">Game 1</a></li>
<li><a href="#">Game 2</a></li>
</ul>
</li>
</ul>
</li>
</ul>