site-branding.php 697 B

123456789101112131415161718
  1. <div class="site-branding">
  2. <?php dara_the_custom_logo(); ?>
  3. <?php
  4. 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
  9. endif;
  10. $description = get_bloginfo( 'description', 'display' );
  11. if ( $description || is_customize_preview() ) : ?>
  12. <p class="site-description"><?php echo $description; /* WPCS: xss ok. */ ?></p>
  13. <?php
  14. endif; ?>
  15. <?php dara_social_menu(); ?>
  16. </div><!-- .site-branding -->