main-menu.php 631 B

12345678910111213141516
  1. <nav id="main-menu">
  2. <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
  3. <a href="#main" title="<?php esc_attr_e( 'Skip to content', 'vamtam-consulting' ); ?>" class="visuallyhidden"><?php esc_html_e( 'Skip to content', 'vamtam-consulting' ); ?></a>
  4. <?php
  5. $location = apply_filters( 'vamtam_header_menu_location', 'menu-header' );
  6. if ( has_nav_menu( $location ) ) {
  7. wp_nav_menu(array(
  8. 'theme_location' => $location,
  9. 'walker' => new VamtamMenuWalker(),
  10. 'link_before' => '<span>',
  11. 'link_after' => '</span>',
  12. ));
  13. }
  14. ?>
  15. </nav>