Created
August 10, 2012 10:15
-
-
Save hansspiess/3313182 to your computer and use it in GitHub Desktop.
Wordpress: Custom menu with description
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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