site-branding.php 701 B

123456789101112131415161718
  1. <div class="site-branding">
  2. <div class="wrap">
  3. <?php lodestar_the_custom_logo(); ?>
  4. <?php if ( is_front_page() && is_home() ) : ?>
  5. <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  6. <?php else : ?>
  7. <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
  8. <?php endif; ?>
  9. <?php $description = get_bloginfo( 'description', 'display' );
  10. if ( $description || is_customize_preview() ) : ?>
  11. <p class="site-description"><?php echo $description; /* WPCS: xss ok. */ ?></p>
  12. <?php endif; ?>
  13. </div><!-- .wrap -->
  14. </div><!-- .site-branding -->