This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_posts/2012-08-18-display-custom-menu-drupal-7-theme-template-file.md
2018-10-21 00:04:05 +01:00

776 B

title description slug tags use
Display a Custom Menu in a Drupal 7 Theme Template File For reference, this is the code needed to display a menu in a Drupal 7 template file. display-custom-menu-drupal-7-theme-template-file
drupal
drupal-7
drupal-planet
php
aria
posts

{% block excerpt %} For reference, this is the code needed to display a menu in a Drupal 7 template file, including the navigation ARIA role. {% endblock %}

{% block content %}

$menu_name = 'menu-footer-menu';
$menu_id = 'footer-menu';
print theme('links', array(
  'links' => menu_navigation_links($menu_name),
  'attributes' => array(
     'id' => $menu_id,
     'role' => 'navigation',
     'class'=> array('links', 'inline')
  )
));

{% endblock %}