Skip to content

Instantly share code, notes, and snippets.

@w-perspective
Forked from agragregra/Wordpress Menu
Created January 8, 2019 14:36
Show Gist options
  • Select an option

  • Save w-perspective/68bef413905f0ff38a896237963e8e07 to your computer and use it in GitHub Desktop.

Select an option

Save w-perspective/68bef413905f0ff38a896237963e8e07 to your computer and use it in GitHub Desktop.
Wordpress Menu
//functions.php
register_nav_menus(array(
'top_mnu' => 'Top Menu',
));
//Template
wp_nav_menu(array(
'theme_location' => 'top_mnu'
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment