I am starting at WP theming, and it's been more than one day that I am looking to do the similar menu with the wp_nav_menu function :
<div class="ui simple dropdown item">
CATEGORY NAME WITH SUB-CATEGORIES
<i class="dropdown icon"></i>
<div class="menu">
<a href="link_to_sub_category"><div class="item" >Sub Category 1</div></a>
<a href="link_to_sub_category"><div class="item" >Sub Category 2</div></a>
</div>
</div>
Also, if there's no sub categories, the HTML output would be like this :
<div class="ui simple dropdown item">
CATEGORY NAME WITHOUT SUB-CATEGORY
</div>
What do I have to put in my functions.php ? Any hint or any help would be very much appreciated !
Thanks.
Add next code to functions.php:
and call wp_nav_menu in the "right" place with next parameters: