Guest User

Untitled

a guest
Oct 20th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <div class="site-branding">
  2. <div class="container">
  3. <?php
  4. if ( function_exists( 'the_custom_logo' ) ) {
  5. the_custom_logo();
  6. }
  7.  
  8. if ( is_front_page() && is_home() ) : ?>
  9. <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  10. <?php else : ?>
  11. <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
  12. <?php
  13. endif;
  14.  
  15. $description = get_bloginfo( 'description', 'display' );
  16. if ( $description || is_customize_preview() ) : ?>
  17. <p class="site-description"><?php echo $description; /* WPCS: xss ok. */ ?></p>
  18. <?php
  19. endif; ?>
  20. <?php do_action('boston_after_site_description'); ?>
  21. </div>
  22. </div><!-- .site-branding -->
Add Comment
Please, Sign In to add comment