Skip to content

Instantly share code, notes, and snippets.

@tmsss
Created November 17, 2015 15:43
Show Gist options
  • Save tmsss/42e811e5b8de9ecb78ae to your computer and use it in GitHub Desktop.
Save tmsss/42e811e5b8de9ecb78ae to your computer and use it in GitHub Desktop.
<?php
$menu = menu_navigation_links('menu-your-custom-menu-name');
print theme('links__menu_your_custom_menu_name', array('links' => $menu));
?>
function THEME_preprocess_page(&$vars) {
$menu = menu_navigation_links('menu-your-custom-menu-name');
$vars['custom_menu'] = theme('links__menu_your_custom_menu_name', array('links' => $menu));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment