<?php if ( has_nav_menu( 'lsvr-beautyspot-header-menu' ) ) : ?>
<!-- HEADER MENU : begin -->
<nav id="header-menu" class="header-menu"
data-label-expand-popup="<?php echo esc_attr( esc_html__( 'Expand submenu', 'beautyspot' ) ); ?>"
data-label-collapse-popup="<?php echo esc_attr( esc_html__( 'Collapse submenu', 'beautyspot' ) ); ?>"
<?php if ( ! empty( lsvr_beautyspot_get_menu_name_by_location( 'lsvr-beautyspot-header-menu' ) ) ) : ?>
aria-label="<?php echo lsvr_beautyspot_get_menu_name_by_location( 'lsvr-beautyspot-header-menu' ); ?>"
<?php endif; ?>>
<?php wp_nav_menu(
array(
'theme_location' => 'lsvr-beautyspot-header-menu',
'container' => '',
'menu_class' => 'header-menu__list',
'fallback_cb' => '',
'items_wrap' => '<ul id="%1$s" class="%2$s" role="menu">%3$s</ul>',
'walker' => new Lsvr_Beautyspot_Header_Menu_Walker(),
)
); ?>
</nav>
<!-- HEADER MENU : end -->
<?php endif; ?> |