| 1 |
<figure class="mgl-item"<?php echo wp_kses_post( $attributes ) ?>> |
| 2 |
<div class="mgl-icon"> |
| 3 |
<div class="mgl-img-container"> |
| 4 |
<?php if ( !$isPreview && $linkUrl ): ?> |
| 5 |
<a href="<?php echo esc_url( $linkUrl ) ?>"> |
| 6 |
<?php echo wp_kses_post( $imgSrc ) ?> |
| 7 |
</a> |
| 8 |
<?php else: ?> |
| 9 |
<?php echo wp_kses_post( $imgSrc ) ?> |
| 10 |
<?php endif; ?> |
| 11 |
</div> |
| 12 |
</div> |
| 13 |
<?php if ( $caption ): ?> |
| 14 |
<figcaption class="mgl-caption"> |
| 15 |
<p><?php echo wp_kses_post( $caption ) ?></p> |
| 16 |
</figcaption> |
| 17 |
<?php endif; ?> |
| 18 |
</figure> |
| 19 |
|