How to define the HTML structure when registering a menu in WordPress?
wp_register_nav_menu() doesn’t seem to be a WordPress function. register_nav_menu() will register the nav menu’s name and description. That’s all that it does. If you want to control how the menu is displayed on the front end, you might be looking for wp_nav_menu(). It will allow you to define a lot of arguments to the menu, … Read more