I am learning wordpress together with bootstrap and somehow I can\'t add class on UL tag.
In the screenshot, I want t
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