image.php
11 lines
| 1 | <?php |
| 2 | \SureCart::render( |
| 3 | 'media/image', |
| 4 | [ |
| 5 | 'media' => $media, |
| 6 | 'lightbox' => $attributes['lightbox'], |
| 7 | 'style' => ( ! empty( $width ) ? 'max-width : min(' . esc_attr( $width ) . ', 100%);' : '' ) . ';' . ( ! $auto_height && ! empty( $attributes['height'] ) ? "height: {$attributes['height']}" : '' ), |
| 8 | 'loading' => $loading ?? 'eager', |
| 9 | ] |
| 10 | ); |
| 11 |