mateusz-wodnik
12/2/2018 - 1:37 PM

Custom Navigation Menu

Add New Navigation Menus to Your Theme

<?php
<!--Create -->
add_action( 'init', function() {
  register_nav_menu('my-custom-menu',__( 'My Custom Menu' ));
});

<!--Display-->
wp_nav_menu([ 
  'theme_location' => 'my-custom-menu', 
  'container_class' => 'custom-menu-class' 
]);