Last active
June 11, 2019 17:45
-
-
Save krogsgard/6386589 to your computer and use it in GitHub Desktop.
_s theme navigation Javascript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<header id="masthead" class="site-header" role="banner"> | |
<div class="site-branding"> | |
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> | |
<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2> | |
</div> | |
<nav id="site-navigation" class="main-navigation" role="navigation"> | |
<h1 class="menu-toggle"><?php _e( 'Menu', '_s' ); ?></h1> | |
<div class="screen-reader-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', '_s' ); ?>"><?php _e( 'Skip to content', '_s' ); ?></a></div> | |
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> | |
</nav><!-- #site-navigation --> | |
</header><!-- #masthead --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment