Skip to content

Instantly share code, notes, and snippets.

@pixelcoder
Created April 20, 2015 03:49
Show Gist options
  • Save pixelcoder/c90451509892bf86418e to your computer and use it in GitHub Desktop.
Save pixelcoder/c90451509892bf86418e to your computer and use it in GitHub Desktop.
WordPress: Register menus
# Register menus
function px_register_menus(){
register_nav_menus(array(
'wp-primary-menu' => __('Primary WordPress Menu'),
'wp-footer-menu' => __('Footer WordPress Menu')
));
}
add_action('init', 'px_register_menus');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment