HEX
Server:
System: Linux aac286ea486c 5.14.0-687.15.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jun 11 08:51:45 EDT 2026 x86_64
User: root (0)
PHP: 8.2.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,disk_free_space,diskfreespace
Upload Files
File: /dom877180/wp-content/themes/splash/partials/loop/post-content.php
<div class="col-md-4 col-sm-6">
	<div <?php post_class('stm-single-post-loop'); ?>>
		<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">

			<?php if(has_post_thumbnail()): ?>
				<div class="image">
					<div class="stm-plus"></div>
					<?php the_post_thumbnail('stm-570-250', array('class' => 'img-responsive')); ?>
				</div>
			<?php endif; ?>


			<div class="date <?php echo (!splash_is_layout("af")) ? "heading-font" : "normal_font"; ?>">
                <?php echo esc_attr(get_the_date()); ?>
            </div>

            <div class="title heading-font">
                <?php the_title(); ?>
            </div>
		</a>

		<div class="content">
			<?php the_excerpt(); ?>
		</div>

		<div class="post-meta <?php echo (splash_is_layout("bb")) ? "heading-font" : "normal_font"; ?>">
			<?php $comments_num = get_comments_number(get_the_id()); ?>
			<?php if($comments_num): ?>
				<div class="comments-number">
					<a href="<?php the_permalink() ?>#comments">
						<i class="fa fa-commenting"></i>
						<span><?php echo esc_attr($comments_num); ?></span>
					</a>
				</div>
			<?php else: ?>
				<div class="comments-number">
					<a href="<?php the_permalink() ?>#comments">
						<i class="fa fa-commenting"></i>
						<span>0</span>
					</a>
				</div>
			<?php endif; ?>

			<?php $posttags = get_the_tags();
			if ($posttags): ?>
				<div class="post_list_item_tags">
					<?php $count = 0; foreach($posttags as $tag): $count++; ?>
						<?php if($count == 1): ?>
							<a href="<?php echo get_tag_link($tag->term_id); ?>">
								<i class="fa fa-tag"></i>
								<?php echo esc_html($tag->name); ?>
							</a>
						<?php endif; ?>
					<?php endforeach; ?>
				</div>
			<?php endif; ?>
		</div>

	</div>
</div>