wp_nav_menu - add class on UL

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

    First of all, you need to create a custom navigation menu from Appearance -> Menus.

    Then, use the wp_nav_menu with the following parameters:

     'nav nav-tabs',        
        'menu' => '(your_menu_id)'
    );
    wp_nav_menu( $args ); 
    ?>
    

    There's a lot you can read about Wordpress Menus. I suggest the following:
    http://codex.wordpress.org/Navigation_Menus
    http://www.paulund.co.uk/how-to-register-menus-in-wordpress

提交回复
热议问题