wp_nav_menu - add class on UL

前端 未结 5 1259
梦如初夏
梦如初夏 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:23

    You need to specify the container element, in our case 'ul' tag, and than specify the class that we will assign in 'menu_class'. Here is the sample code:

    wp_nav_menu( array(
        'theme_location' => 'top-menu',
        'container' => 'ul',
        'menu_class'=> '[add-your-class-here]'
     ) );
    

提交回复
热议问题