How to Allow my own theme to support multiple menus in wordpress Unknown 22:50 Add Comment Add the following to your functions.php file. The 2 menus are the “Primary”, and “Secondary” menus. /Register Navigations add_action( 'init',...
Adding .active class to active menu item Unknown 04:19 Add Comment Add this code in function.php file in your theme add_filter('nav_menu_css_class' , 'special_nav_class' , 10 , 2); function special_nav_class($classes,...