Skip to content

Instantly share code, notes, and snippets.

@marcosnakamine
Created March 28, 2017 18:37
Show Gist options
  • Save marcosnakamine/7ad3a873fb41dde21d1230e04357549a to your computer and use it in GitHub Desktop.
Save marcosnakamine/7ad3a873fb41dde21d1230e04357549a to your computer and use it in GitHub Desktop.
WordPress - Add menu support
<?php
add_action( 'init', 'register_new_menu' );
function register_new_menu() {
register_nav_menus();
}
<?php
wp_nav_menu();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment