🐞 fix: Wrap style echo in conditional
Sync TODOs with Issues / sync_todos (push) Successful in 5s

This commit is contained in:
Keith Solomon
2026-06-14 12:30:04 -05:00
parent 33085ff08c
commit 7c7277ec5b
+1 -1
View File
@@ -67,7 +67,7 @@ $overlayStyles .= " opacity: $ovlOpacity;";
$wrapper = blockWrapperAttributes( $classes, $is_preview );
?>
<section <?php echo wp_kses_post( $wrapper ); ?> style="<?php echo esc_attr( $styles ); ?>">
<section <?php echo wp_kses_post( $wrapper ); ?> <?php if ( $styles ) { // phpcs:ignore ?>style="<?php echo esc_attr( $styles ); ?>"<?php } ?>>
<?php if ( $ovlColor || $ovlImage ) : ?>
<div aria-hidden="true" class="section-overlay absolute inset-0 bg-center bg-cover bg-no-repeat" style="<?php echo esc_attr( $overlayStyles ); ?>"></div>
<?php endif; ?>