Last active
October 15, 2019 11:36
-
-
Save arimichi/cec14c1f61371ac8b5c6111370da1c3c to your computer and use it in GitHub Desktop.
WordPressカスタムメニュー表示
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 | |
| $defaults = array( | |
| 'menu' => '', | |
| 'menu_class' => 'menu', | |
| 'menu_id' => '{メニューのスラッグ}-{連番}', | |
| 'container' => 'div', | |
| 'container_class' => 'menu-{メニューのスラッグ}-container', | |
| 'container_id' => '', | |
| 'fallback_cb' => 'wp_page_menu', | |
| 'before' => '', | |
| 'after' => '', | |
| 'link_before' => '', | |
| 'link_after' => '', | |
| 'echo' => true, | |
| 'depth' => 0, | |
| 'walker' => '', | |
| 'theme_location' => '', | |
| 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>', | |
| ); | |
| wp_nav_menu( $defaults ); | |
| ?> |
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 | |
| wp_nav_menu( [ | |
| 'menu' => '', | |
| 'menu_class' => 'global-menu', | |
| 'menu_id' => 'global-navi', | |
| 'container' => 'false', | |
| 'fallback_cb' => '', | |
| 'echo' => true, | |
| 'depth' => 0, | |
| 'theme_location' => 'global', | |
| 'items_wrap' => '<ul id="%1$s">%3$s</ul>' | |
| ] ); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment