oliverdavies.uk/source/_posts/display-custom-menu-drupal-7-theme-template-file.md
2021-06-30 12:02:53 +01:00

28 lines
629 B
Markdown

---
title: Display a Custom Menu in a Drupal 7 Theme Template File
date: 2012-08-18
excerpt: The code needed to display a menu in a Drupal 7 template file.
tags:
- drupal
- drupal-7
- drupal-planet
- php
- aria
---
For reference, this is the code needed to display a menu in a Drupal 7 template
file, including the navigation ARIA role.
```language-php
$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')
)
));
```