HOW TO REGISTER NAV MENU IN WORDPRESS?

The easiest way to add the nav manu in the dashboard is by using “register_nav_menus()” function and hook in the functions.phpThe syntax is as follow: function menu_name(){“header” => “primary Menu”,“footer” => “Footer Menu”} add_action(“init”,”menu_name”); // in the above header and footer are the two menus that I am going to embade in my project. You … Read moreHOW TO REGISTER NAV MENU IN WORDPRESS?