Created
March 28, 2017 18:37
-
-
Save marcosnakamine/7ad3a873fb41dde21d1230e04357549a to your computer and use it in GitHub Desktop.
WordPress - Add menu support
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', 'register_new_menu' ); | |
function register_new_menu() { | |
register_nav_menus(); | |
} |
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(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment