site-branding.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * Displays header site branding
  4. *
  5. * @package WordPress
  6. * @subpackage Twenty_Seventeen
  7. * @since 1.0
  8. * @version 1.0
  9. */
  10. ?>
  11. <div class="site-branding">
  12. <div class="wrap">
  13. <?php the_custom_logo(); ?>
  14. <div class="site-branding-text">
  15. <?php if ( is_front_page() ) : ?>
  16. <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  17. <?php else : ?>
  18. <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
  19. <?php endif; ?>
  20. <?php
  21. $description = get_bloginfo( 'description', 'display' );
  22. if ( $description || is_customize_preview() ) :
  23. ?>
  24. <p class="site-description"><?php echo $description; ?></p>
  25. <?php endif; ?>
  26. </div><!-- .site-branding-text -->
  27. <?php if ( ( twentyseventeen_is_frontpage() || ( is_home() && is_front_page() ) ) && ! has_nav_menu( 'top' ) ) : ?>
  28. <a href="#content" class="menu-scroll-down"><?php echo twentyseventeen_get_svg( array( 'icon' => 'arrow-right' ) ); ?><span class="screen-reader-text"><?php _e( 'Scroll down to content', 'twentyseventeen' ); ?></span></a>
  29. <?php endif; ?>
  30. </div><!-- .wrap -->
  31. </div><!-- .site-branding -->