- Go to the Structure > Menu > Settings
- Choose Main Menu as the Source for the Secondary links
Paste this script into your template (tpl) file:
<ul class="main-menu">
<?php print theme('links__system_main_menu', array(
'links' => $main_menu,
'attributes' => array(
'id' => 'main-menu-links',
'class' => array('links', 'clearfix'),
),
'heading' => array(
'text' => t('Main menu'),
'level' => 'h2',
'class' => array('element-invisible'),
),
)); ?>
</ul>
Past this script into a region/space on your template (tpl) file:
<ul>
<?php print theme('links__system_main_menu', array(
'links' => $secondary_menu,
'attributes' => array(
'id' => 'seconday-menu-links',
'class' => array('links', 'clearfix'),
),
'heading' => array(
'text' => t('Secondary menu'),
'level' => 'h2',
'class' => array('element-invisible'),
),
)); ?>
</ul>