How to add ul class on nav

It’s simple just you need to add items_wrap parameter and add or edit class attr:

wp_nav_menu( array(
    'theme_location' => 'top-menu',
    'container' => false,
    'items_wrap' => '<ul class="nav your_custom_class">%3$s</ul>',
));

Leave a Comment