HEX
Server: Apache
System: Linux host60.registrar-servers.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: wwwrenee (3804)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /home/wwwrenee/public_html/wp-content/plugins/insta-gallery/templates/item/item-video.php
<?php
$lazy    = 'carousel' !== $feed['layout'] && $feed['lazy'] ? 'loading="lazy"' : '';
$classes = 'carousel' === $feed['layout'] && $feed['lazy'] ? 'swiper-lazy' : '';
?>

<div class="insta-gallery-image-wrap insta-gallery-video-wrap">
	<a class="insta-gallery-link" href="<?php echo esc_url( $item['link'] ); ?>" target="_blank">
		<video <?php echo $lazy; ?> alt="Instagram" class="insta-gallery-image insta-gallery-video <?php echo esc_attr( $classes ); ?>" loop>
			<source src="<?php echo esc_url( $image ); ?>">
		</video>
		<?php if ( $feed['mask']['display'] ) : ?>
			<?php include QLIGG_Frontend::template_path( 'item/item-image-mask.php' ); ?>
		<?php endif; ?>
	</a>
	<?php if ( $item['type'] == 'video' || $item['file_type'] == 'video' ) : ?>
		<i class="insta-gallery-icon qligg-icon-video"></i>
	<?php elseif ( $item['type'] == 'carousel' ) : ?>
		<i class="insta-gallery-icon qligg-icon-gallery"></i>
	<?php endif; ?>
	<a class="insta-gallery-icon qligg-icon-instagram" href="<?php echo esc_url( $item['link'] ); ?>" target="_blank"></a>
</div>