Skip to content

Instantly share code, notes, and snippets.

@zachbrowne
Created October 8, 2011 23:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zachbrowne/1273044 to your computer and use it in GitHub Desktop.
Save zachbrowne/1273044 to your computer and use it in GitHub Desktop.
Thesis Theme Snippets
# Add menu to footer
register_nav_menu('footer','Footer Menu');
function custom_footer_menu() {
wp_nav_menu(array(
'container' => '',
'menu_id' => 'footer_nav',
'fallback_cb' => 'thesis_nav_menu',
'theme_location' => 'footer',
));
}
add_action('thesis_hook_footer','custom_footer_menu');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment