Make WordPress Core

Ticket #44656: 44656.diff

File 44656.diff, 1.2 KB (added by audrasjb, 6 years ago)

Adds site-title check before displaying it

  • src/wp-content/themes/twentyseventeen/template-parts/header/site-branding.php

    diff --git a/src/wp-content/themes/twentyseventeen/template-parts/header/site-branding.php b/src/wp-content/themes/twentyseventeen/template-parts/header/site-branding.php
    index 02017d5..1ad2ddb 100644
    a b  
    1515                <?php the_custom_logo(); ?>
    1616
    1717                <div class="site-branding-text">
    18                         <?php if ( is_front_page() ) : ?>
    19                                 <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
    20                         <?php else : ?>
    21                                 <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
     18                        <?php if ( ! empty( get_bloginfo( 'name' ) ) ) : ?>
     19                                <?php if ( is_front_page() ) : ?>
     20                                        <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
     21                                <?php else : ?>
     22                                        <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
     23                                <?php endif; ?>
    2224                        <?php endif; ?>
    2325
    2426                        <?php