0

I am making wordpress template. I've made mega menu on it. Such as on screenshot. enter image description here But it is only in html. How to add custom settings in wordpress console for users, to add menu items etc.. ?

user3724896
  • 139
  • 2
  • 12

1 Answers1

1

The wordpress function to create menus is wp_nav_menu however I'm not sure it will work with your menu, it will depend of the structure you developed your mega menu and if it's like the default output by the wp_nav_menu function.

If it's not you will need to write a menu nav walker function.

You can check more about that here

Maybe if you can shere your mega menu code I could help you more.

Gil Sousa
  • 769
  • 5
  • 12
  • You defenetly will have to code a walker function. It's seems you have also used the Bootstrap 3 framework, you can see this GitHub project of a walker function for a Bootstrap navigation. https://github.com/twittem/wp-bootstrap-navwalker – Gil Sousa Jun 20 '14 at 12:29