Skip to content

Instantly share code, notes, and snippets.

@andornagy
Last active December 15, 2015 15:29
Show Gist options
  • Save andornagy/5282142 to your computer and use it in GitHub Desktop.
Save andornagy/5282142 to your computer and use it in GitHub Desktop.
<?php
function theme_menu($menu) {
if ( has_nav_menu( $menu.'-menu' ) ) {
?>
<div id="<?php echo $menu ?>-menu"> <?php
wp_nav_menu( array(
'theme_location' => $menu.'-menu',
'menu_class' => $menu,
));
?>
</div>
<?php
}
}
<?php theme_menu('primary'); ?>
<?php
function theme_register_menus() {
register_nav_menus(
array(
'primary-menu' => __( 'Primary Menu', 'text-domain' ),
'secondary-menu' => __( 'Secondary Menu', 'text-domain' ), // you can repeat this as many times as you wish.
)
);
}
add_action( 'init', 'theme_register_menus' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment