Skip to content

Commit 50c42de

Browse files
committed
Fix indentation
1 parent fee9e9d commit 50c42de

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

src/wp-content/themes/twentyeleven/header.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@
9696
</hgroup>
9797

9898
<?php
99-
// Check to see if the header image has been removed.
100-
$header_image = get_header_image();
99+
// Check to see if the header image has been removed.
100+
$header_image = get_header_image();
101101
if ( $header_image ) :
102102
// Compatibility with versions of WordPress prior to 3.4.
103103
if ( function_exists( 'get_custom_header' ) ) {

src/wp-content/themes/twentysixteen/header.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,9 @@
4343
if ( $site_name && is_front_page() && is_home() ) :
4444
?>
4545
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" <?php echo $is_front ? 'aria-current="page"' : ''; ?>><?php echo $site_name; ?></a></h1>
46-
<?php
47-
elseif ( $site_name ) :
48-
?>
46+
<?php elseif ( $site_name ) : ?>
4947
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" <?php echo $is_front ? 'aria-current="page"' : ''; ?>><?php echo $site_name; ?></a></p>
50-
<?php
48+
<?php
5149
endif;
5250

5351
$description = get_bloginfo( 'description', 'display' );

0 commit comments

Comments
 (0)