HEX
Server: LiteSpeed
System: Linux premium140.web-hosting.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
User: ukqcurpj (1011)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/ukqcurpj/public_html/wp-content/themes/masterstudy/partials/loop-gallery.php
<?php $terms = (get_the_terms(get_the_ID(), 'gallery_category')); ?>
<div class="col-md-3 col-sm-4 col-xs-6 stm-isotope-item teacher-col gallery-col all <?php if (!empty($terms)): foreach ($terms as $term): echo esc_attr($term->slug) . ' '; endforeach; endif; ?>">

	<?php if (has_post_thumbnail()): ?>
        <div class="gallery_single_view">
            <div class="gallery_img">
				<?php $url_big = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_id()), 'full'); ?>
                <a class="stm_fancybox"
                   href="<?php echo esc_url($url_big[0]); ?>"
                   title="<?php _e('Watch full image', 'masterstudy'); ?>"
                   data-caption="<?php the_title(); ?>"
                   rel="gallery_rel">
					<?php the_post_thumbnail('img-270-180', array('class' => 'img-responsive')); ?>
                </a>
            </div>
        </div>
	<?php endif; ?>

</div>