block.json
1 year ago
controller.php
1 year ago
empty.php
1 year ago
index.asset.php
4 months ago
index.js
4 months ago
style-index-rtl.css
1 year ago
style-index.css
1 year ago
view.php
1 year ago
view.php
26 lines
| 1 | <figure |
| 2 | <?php |
| 3 | echo wp_kses_data( |
| 4 | get_block_wrapper_attributes( |
| 5 | array( |
| 6 | 'class' => $class, |
| 7 | 'style' => $style, |
| 8 | ) |
| 9 | ) |
| 10 | ); |
| 11 | ?> |
| 12 | > |
| 13 | <?php if ( $is_link ) : ?> |
| 14 | <a |
| 15 | href="<?php echo esc_url( get_the_permalink() ); ?>" |
| 16 | title="<?php echo esc_attr( the_title_attribute( [ 'echo' => false ] ) ); ?>" |
| 17 | target="<?php echo esc_attr( $attributes['linkTarget'] ); ?>" |
| 18 | <?php echo ! empty( $rel ) ? 'rel="' . esc_attr( $rel ) . '"' : ''; ?> |
| 19 | > |
| 20 | <?php endif; ?> |
| 21 | <?php echo wp_kses( $product_image_html, sc_allowed_image_html() ); ?> |
| 22 | <?php if ( $is_link ) : ?> |
| 23 | </a> |
| 24 | <?php endif; ?> |
| 25 | </figure> |
| 26 |