style: PHPCS clean across theme PHP

This commit is contained in:
Keith Solomon
2026-08-16 13:37:49 -05:00
parent aaef1ee4f8
commit 6dcd1233be
5 changed files with 30 additions and 25 deletions
+6 -3
View File
@@ -31,9 +31,11 @@ $footerNav = ! empty( $locations['footer_navigation'] )
<a href="<?php echo esc_url( home_url( '/' ) ); ?>">
<?php if ( $footerLogo ) { ?>
<img src="<?php echo esc_url( $footerLogo ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>" />
<?php } else {
<?php
} else {
echo esc_html( get_bloginfo( 'name' ) );
} ?>
}
?>
</a>
</h2>
<?php if ( $footerDesc ) : ?>
@@ -41,7 +43,8 @@ $footerNav = ! empty( $locations['footer_navigation'] )
<?php endif; ?>
</div>
<?php for ( $i = 1; $i <= 3; $i++ ) :
<?php
for ( $i = 1; $i <= 3; $i++ ) :
$area_id = 'footer-' . $i;
if ( ! is_active_sidebar( $area_id ) ) {
continue;