wp_nav_menu - add class on UL

前端 未结 5 1257
梦如初夏
梦如初夏 2021-02-01 18:47

I am learning wordpress together with bootstrap and somehow I can\'t add class on UL tag.

In the screenshot, I want t

5条回答
  •  孤街浪徒
    2021-02-01 19:39

    I had the same problem, so I changed the word "theme_location" to "name" and it works perfectly.

    Example:

    $defaults = array(
        '[INSTEAD OF PUTTING "theme_location" PUT "name"]'  => 'THE NAME OF YOUR "theme_location"',
        'menu_class' => 'YOUR CLASS', **[It will change the 
      class]** ); wp_nav_menu( $defaults );

    So for your code:

    wp_nav_menu( array(
        'name' => 'top-menu',
        'menu_class'=> 'YOUR CLASS'
     ) );
    
     wp_nav_menu( $defaults );
    

    enter image description here

    You can also put it into a container like a

    or a
提交回复
热议问题