site-branding.php 449 B

12345678910
  1. <div class="site-branding">
  2. <?php ixion_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 endif; ?>
  9. </div><!-- .site-branding -->