| Versions | |
|---|---|
| 4.7 – 5 | theme_menu_tree( |
| 6 | theme_menu_tree( |
| 7 | theme_menu_tree($variables) |
Returns HTML for a wrapper for a menu sub-tree.
$variables An associative array containing:
template_preprocess_menu_tree()
drupal/
<?php
function theme_menu_tree($variables) {
return '<ul class="menu">' . $variables['tree'] . '</ul>';
}
?>