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/content-news-grid-style3.php
<div class="stm-latest-news-single">
    <div <?php post_class('stm-single-post-loop'); ?>>
        <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">

            <?php if (has_post_thumbnail() and !is_search()): ?>
                <div class="image <?php echo esc_html(get_post_format(get_the_ID())); ?>">
                    <?php the_post_thumbnail('stm-555-460', array('class' => 'img-responsive')); ?>
                    <?php if (is_sticky(get_the_id())): ?>
                        <div class="stm-sticky-post heading-font"><?php esc_html_e('Sticky Post', 'splash'); ?></div>
                    <?php endif; ?>
                </div>
            <?php else: ?>
                <?php if (is_sticky(get_the_id())): ?>
                    <div class="stm-sticky-post stm-sticky-no-image heading-font"><?php esc_html_e('Sticky Post', 'splash'); ?></div>
                <?php endif; ?>
            <?php endif; ?>
        </a>

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

            <div class="title heading-font clear">
                <a href="<?php the_permalink() ?>">
                    <?php the_title(); ?>
                </a>
            </div>
            <div class="content_">
                <?php the_excerpt(); ?>
            </div>
            <div class="post-meta <?php echo (splash_is_layout("bb")) ? "heading-font" : "normal_font"; ?> clear">
                <div class="news-category">
                    <i class="fa fa-folder-o" aria-hidden="true"></i>
                    <?php $categ = get_the_category(get_the_ID());
                    echo splash_sanitize_text_field($categ[0]->cat_name); ?>
                </div>
                <?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-comment-o" aria-hidden="true"></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-comment-o" aria-hidden="true"></i>
                            <span>0</span>
                        </a>
                    </div>
                <?php endif; ?>
            </div>
        </div>
    </div>
</div>