Skip to content

Instantly share code, notes, and snippets.

@javiergbas
Last active August 29, 2015 14:24
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 javiergbas/f13c72d145b82d2fb23c to your computer and use it in GitHub Desktop.
Save javiergbas/f13c72d145b82d2fb23c to your computer and use it in GitHub Desktop.
<?php
// In functions.php
function register_custom_menu() {
register_nav_menu('new-menu',__( 'New Menu' ));
}
add_action( 'init', 'register_custom_menu' );
?>
// In theme php
<?php wp_nav_menu( array( 'theme_location' => 'new-menu' ) ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment