mirror of
https://github.com/WordPress/WordPress.git
synced 2024-10-29 23:09:44 +01:00
9c5d4ca8d1
This aims to provide better context for translators and make it easier to determine that some strings contain hidden accessibility text and are not displayed in the UI. Props kebbet, mercime, pavelevap, ocean90, swissspidy, Chouby, jipmoors, afercia, desrosj, costdev, audrasjb, SergeyBiryukov. Fixes #29748. Built from https://develop.svn.wordpress.org/trunk@55276 git-svn-id: http://core.svn.wordpress.org/trunk@54809 1a063a9b-81f0-0310-95a4-ce76da25c4cd
39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Displays top navigation
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Seventeen
|
|
* @since Twenty Seventeen 1.0
|
|
* @version 1.2
|
|
*/
|
|
|
|
?>
|
|
<nav id="site-navigation" class="main-navigation" aria-label="<?php esc_attr_e( 'Top Menu', 'twentyseventeen' ); ?>">
|
|
<button class="menu-toggle" aria-controls="top-menu" aria-expanded="false">
|
|
<?php
|
|
echo twentyseventeen_get_svg( array( 'icon' => 'bars' ) );
|
|
echo twentyseventeen_get_svg( array( 'icon' => 'close' ) );
|
|
_e( 'Menu', 'twentyseventeen' );
|
|
?>
|
|
</button>
|
|
|
|
<?php
|
|
wp_nav_menu(
|
|
array(
|
|
'theme_location' => 'top',
|
|
'menu_id' => 'top-menu',
|
|
)
|
|
);
|
|
?>
|
|
|
|
<?php if ( ( twentyseventeen_is_frontpage() || ( is_home() && is_front_page() ) ) && has_custom_header() ) : ?>
|
|
<a href="#content" class="menu-scroll-down"><?php echo twentyseventeen_get_svg( array( 'icon' => 'arrow-right' ) ); ?><span class="screen-reader-text">
|
|
<?php
|
|
/* translators: Hidden accessibility text. */
|
|
_e( 'Scroll down to content', 'twentyseventeen' );
|
|
?>
|
|
</span></a>
|
|
<?php endif; ?>
|
|
</nav><!-- #site-navigation -->
|