Skip to content

Instantly share code, notes, and snippets.

@hansspiess
Created August 10, 2012 10:15
Show Gist options
  • Save hansspiess/3313182 to your computer and use it in GitHub Desktop.
Save hansspiess/3313182 to your computer and use it in GitHub Desktop.
Wordpress: Custom menu with description
<?php
wp_nav_menu( array(
'theme_location' => 'homepage_navigation_left',
'container' => FALSE,
'echo' => true,
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'walker' => new Walker_Description_Menu_HS_Hometeaser()
)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment