Custom theme navigation
1. Register your menu Register your menu with register_nav_menus() after which you can choose that menu from admin area: Appearance -> Menus. Add one of these to functions.php: <?php register_nav_menus( array( ‘primary’ => __( ‘Main Menu’, ‘tt’ ) ) ); //’primary’ is basically like a slug that can be used to get that specific menu … Read more