Skip to content

Instantly share code, notes, and snippets.

@awakekat
Created August 1, 2016 21:39
Show Gist options
  • Save awakekat/813c7375413c9b43b66e9b8ca89a21c0 to your computer and use it in GitHub Desktop.
Save awakekat/813c7375413c9b43b66e9b8ca89a21c0 to your computer and use it in GitHub Desktop.
Register Menu in functions.php
<?php
/*
* Register Menu in functions.php
*/
add_action( 'after_setup_theme', 'register_my_menu' );
function register_my_menu() {
register_nav_menu( 'primary', __( 'Primary Menu', 'theme-slug' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment