Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Last active May 2, 2019 05:02
Show Gist options
  • Save jlittlejohn/23814f299dc5d22ed8d0 to your computer and use it in GitHub Desktop.
Save jlittlejohn/23814f299dc5d22ed8d0 to your computer and use it in GitHub Desktop.
WP: Register a Menu
function register_my_menu() {
register_nav_menu('footer-navigation',__( 'Footer Navigation' ));
}
add_action( 'init', 'register_my_menu' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment