Skip to content

Instantly share code, notes, and snippets.

@balsama
Created December 15, 2014 15:43
Show Gist options
  • Save balsama/6e4e37c1a031df4de4e0 to your computer and use it in GitHub Desktop.
Save balsama/6e4e37c1a031df4de4e0 to your computer and use it in GitHub Desktop.
Add class to Drupal menu UL
<?php
/**
* Adds a class to a menu's ul. This snipped should be placed in your theme's
* `template.php` file.
*/
function YOURTHEME_menu_tree__menu_MENU_NAME($variables){
return "<ul class='menu nav nav-pills'>\n" . $variables['tree'] ."</ul>\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment