This project is not covered by Drupal’s security advisory policy.
This module allows to embed primary menu in the theme as a tree instead of the first level only.
It keeps classes and other stuffs applied by other modules (Menu Class for instance).
To use it, replace :
<?php print theme('links', $primary_links, array('id' => 'main-menu', 'class' => 'links clearfix'));?>
by
<?php print theme('multilev_menu', 'primary-links',array('id' => 'main-menu', 'class' => 'links clearfix'));?>
You can also use this code to find the name of your primary links menu :
<?php if ($primary_links){
if ($primary_links_name) $menu_name = $primary_links_name;
else $menu_name = variable_get('menu_primary_links_source', 'primary-links');
print theme('multilev_menu', $menu_name,array('id' => 'main-menu', 'class' => 'links clearfix'));
}
?>
Project information
- Project categories: Site structure
2 sites report using this module
- Created by tahiticlic on , updated
This project is not covered by the security advisory policy.
Use at your own risk! It may have publicly disclosed vulnerabilities.
