social-navigation.php 491 B

123456789101112131415
  1. <?php if ( has_nav_menu( 'social' ) ) : ?>
  2. <nav class="social-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Social Links Menu', 'varia' ); ?>">
  3. <?php
  4. wp_nav_menu(
  5. array(
  6. 'theme_location' => 'social',
  7. 'menu_class' => 'social-links-menu',
  8. 'link_before' => '<span class="screen-reader-text">',
  9. 'link_after' => '</span>' . varia_get_icon_svg( 'link' ),
  10. 'depth' => 1,
  11. )
  12. );
  13. ?>
  14. </nav><!-- .social-navigation -->
  15. <?php endif; ?>