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-teacher.php
<?php // <!-- Construct socials and get all custom fields -->
$origin_socials = array(
	'facebook',
	'linkedin',
	'twitter',
	'google-plus',
	'youtube-play',
); ?>
<?php $job = get_post_meta(get_the_id(), 'expert_sphere', true); ?>
<div class="col-md-3 col-sm-4 col-xs-6 teacher-col">
    <div class="teacher_content">

		<?php if (has_post_thumbnail()): ?>
            <div class="teacher_img">
                <a href="<?php the_permalink(); ?>" title="<?php esc_attr_e('Watch teacher page', 'masterstudy'); ?>">
					<?php the_post_thumbnail('img-270-180', array('class' => 'img-responsive')); ?>
                </a>
                <div class="expert_socials clearfix text-center">
                    <div class="display_inline_block">
						<?php foreach ($origin_socials as $social): ?>
							<?php $current_social = get_post_custom_values($social, get_the_id()); ?>
							<?php if (!empty($current_social[0])): ?>
                                <a class="expert-social-<?php echo esc_attr($social); ?>"
                                   href="<?php echo esc_url($current_social[0]); ?>"
                                   title="<?php printf(esc_attr__('View expert on %s', 'masterstudy'), $social); ?>">
                                    <i class="fab fa-<?php echo esc_attr(str_replace('youtube-play', 'youtube', $social)); ?>"></i>
                                </a>
							<?php endif; ?>
						<?php endforeach; ?>
                    </div>
                </div>
            </div>
		<?php endif; ?>
        <a href="<?php the_permalink(); ?>" title="<?php esc_attr_e('Watch teacher page', 'masterstudy'); ?>">
            <h4 class="title"><?php the_title(); ?></h4>
        </a>
		<?php if (!empty($job)): ?>
            <div class="job heading_font"><?php echo esc_attr($job); ?></div>
		<?php endif; ?>
        <div class="content">
			<?php the_excerpt(); ?>
        </div>
    </div>
    <div class="multiseparator"></div>
</div>