Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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' ) ); ?> |
Screen shot
Note
Description | カスタムメニューを複数作成する。テーマファイルへの記述はtheme_locationで指定する |
---|---|
WordPress Ver. | 3.3.1 |
Via | Multiple Custom menus |