view.php
11 lines
| 1 | <div |
| 2 | <?php echo wp_kses_data( get_block_wrapper_attributes() ); ?> |
| 3 | role="region" |
| 4 | aria-label="<?php esc_attr_e( 'Customer Reviews Summary', 'surecart' ); ?>" |
| 5 | > |
| 6 | <?php if ( ! empty( $sr_summary ) ) : ?> |
| 7 | <span class="sc-screen-reader-text"><?php echo esc_html( $sr_summary ); ?></span> |
| 8 | <?php endif; ?> |
| 9 | <?php echo $content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> |
| 10 | </div> |
| 11 |