site-branding.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * Displays header site branding
  4. *
  5. * @package WordPress
  6. * @subpackage Twenty_Twenty_One
  7. * @since Twenty Twenty-One 1.0
  8. */
  9. $blog_info = get_bloginfo( 'name' );
  10. $description = get_bloginfo( 'description', 'display' );
  11. $show_title = ( true === get_theme_mod( 'display_title_and_tagline', true ) );
  12. $header_class = $show_title ? 'site-title' : 'screen-reader-text';
  13. ?>
  14. <?php if ( has_custom_logo() && $show_title ) : ?>
  15. <div class="site-logo"><?php the_custom_logo(); ?></div>
  16. <?php endif; ?>
  17. <div class="site-branding">
  18. <?php if ( has_custom_logo() && ! $show_title ) : ?>
  19. <div class="site-logo"><?php the_custom_logo(); ?></div>
  20. <?php endif; ?>
  21. <?php if ( $blog_info ) : ?>
  22. <?php if ( is_front_page() && ! is_paged() ) : ?>
  23. <!-- <h1 class="<?php echo esc_attr( $header_class ); ?>"><?php echo esc_html( $blog_info ); ?></h1> -->
  24. <?php [$image_url, $post_url] = catch_that_image(); ?>
  25. <!-- $post_url; <?php echo $post_url ?> -->
  26. <h1 class="<?php echo esc_attr( $header_class ); ?>"><a href="<?php echo esc_url( $post_url ); ?>"><small>This post on</small> <?php echo esc_html( $blog_info ); ?></a></h1>
  27. <?php elseif ( is_front_page() || is_home() ) : ?>
  28. <h1 class="<?php echo esc_attr( $header_class ); ?>"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php echo esc_html( $blog_info ); ?></a></h1>
  29. <?php else : ?>
  30. <p class="<?php echo esc_attr( $header_class ); ?>"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php echo esc_html( $blog_info ); ?></a></p>
  31. <?php endif; ?>
  32. <?php endif; ?>
  33. <?php if ( $description && true === get_theme_mod( 'display_title_and_tagline', true ) ) : ?>
  34. <p class="site-description">
  35. <?php echo $description; // phpcs:ignore WordPress.Security.EscapeOutput ?>
  36. </p>
  37. <?php endif; ?>
  38. </div><!-- .site-branding -->