# [ tutorial ] -- Roots Theme Carve Job

**URL:** https://discourse.roots.io/t/tutorial-roots-theme-carve-job/64
**Category:** uncategorized
**Created:** 2013-08-02T02:28:39Z
**Posts:** 11
**Showing post:** 3 of 11

## Post 3 by @Foxaii — 2013-08-02T15:35:58Z

One thing I would say is Section D should take advantage of the Roots Bootstrap Walker and WordPress Menus. You just need to create a secondary navigation menu and change the classes when the menu is called:

```
<?php
if (has_nav_menu('secondary_navigation')) :
  wp_nav_menu(array('theme_location' => 'secondary_navigation', 'menu_class' => 'nav nav-pills nav-stacked'));
endif;
?>
```

---

_[View the full topic](https://discourse.roots.io/t/tutorial-roots-theme-carve-job/64)._
