Skip to content

Instantly share code, notes, and snippets.

@shemul49rmc
Created October 28, 2013 11:39
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 shemul49rmc/7195377 to your computer and use it in GitHub Desktop.
Save shemul49rmc/7195377 to your computer and use it in GitHub Desktop.
Add Additional Menu in Thesis Theme
register_nav_menu('secondary', 'Secondary Menu');
function secondary_menu() {
wp_nav_menu( array( 'container_class' => 'secondary_menu', 'theme_location' => 'secondary' ) );
}
add_action('thesis_hook_after_header','secondary_menu');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment