简体   繁体   中英

Add custom class to specific wp_nav_menu() ul

Is there a way to apply a custom class to a WordPress menu <ul> ? Is there an argument of the 'class' => 'my_class' type?

I use

<?php wp_nav_menu( array( 'theme_location' => 'custom-menu' ) ); ?>

This should work, I think:

<?php wp_nav_menu( array('theme_location' =>'custom-menu',
'menu_class' =>'your-class')); ?>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM