Skip to content

Instantly share code, notes, and snippets.

@kachi
Created March 11, 2012 03:54
Show Gist options
  • Select an option

  • Save kachi/2014927 to your computer and use it in GitHub Desktop.

Select an option

Save kachi/2014927 to your computer and use it in GitHub Desktop.
<?php
add_action( 'init', 'my_custom_menus' );
function my_custom_menus() {
register_nav_menus(
array(
'primary-menu' => __( 'Primary Menu' ),
'secondary-menu' => __( 'Secondary Menu' )
)
);
}
?>
/*テーマファイルへの埋め込むタグ*/
<?php wp_nav_menu( array('theme_location' => 'primary-menu' ) ); ?>
<?php wp_nav_menu( array( 'theme_location' => 'secondary-menu' ) ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment