32 lines
		
	
	
	
		
			887 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			887 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
---
 | 
						|
nav: blog
 | 
						|
title: Display a Custom Menu in a Drupal 7 Theme Template File
 | 
						|
description: For reference, this is the code needed to display a menu in a Drupal 7 template file.
 | 
						|
slug: display-custom-menu-drupal-7-theme-template-file
 | 
						|
tags:
 | 
						|
  - drupal
 | 
						|
  - drupal-7
 | 
						|
  - drupal-planet
 | 
						|
  - php
 | 
						|
  - aria
 | 
						|
---
 | 
						|
{% 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 %}
 | 
						|
For reference, this is the code needed to display a menu in a Drupal 7 template file, including the navigation ARIA role.
 | 
						|
 | 
						|
~~~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')
 | 
						|
  )
 | 
						|
));
 | 
						|
~~~
 | 
						|
{% endblock %}
 |