HEX
Server: Apache/2.4.29 (Ubuntu)
System: Linux bareserver 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
User: root (0)
PHP: 7.2.24-0ubuntu0.18.04.17
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,
Upload Files
File: /var/www/html/site/newsite/wp-content/themes/vinl/template-parts/related-articles.php
<?php
$page_template = get_page_template_slug(get_queried_object_id());
$post_count = 3;
?>

<?php
$readmore_show_hide = get_theme_mod('post_snippet_hide_show_readmore', finley_get_default_post_snippet_show_hide_read_more());
$readmore_text = get_theme_mod('post_snippet_readmore_text', finley_get_default_post_snippet_read_more_text());

$related_articles_title = get_theme_mod('post_detail_related_articles_title', finley_get_default_post_detail_related_articles_title());
?>

<div class="related-posts">
    <?php
    $args = array(
        'posts_per_page' => $post_count,
        'post_type' => 'post',
        'category__in' => wp_get_post_categories($post->ID),
        'post__not_in' => array($post->ID)
    );


    $query = new WP_Query($args);
    if ($query->have_posts()) {
    ?>
        <h2 class="main-title"><?php echo esc_html($related_articles_title); ?></h2>
        <div class="post-holder">
            <?php while ($query->have_posts()) : $query->the_post(); ?>
                <div class="news-snippet">

                    <?php if (get_theme_mod('post_snippet_hide_show_featured_image', finley_get_default_post_snippet_featured_image()) && has_post_thumbnail()) : ?>

                        <?php $thumbnail_size = get_theme_mod('post_snippet_featured_image_size', finley_get_default_post_snippet_featured_image_size()); ?>
                        <a href="<?php echo esc_url(get_permalink()); ?>" rel="bookmark" class="featured-image">
                            <?php the_post_thumbnail($thumbnail_size); ?>
                        </a>

                    <?php endif; ?>

                    <div class="summary">
                        <h5 class="news-title">
                            <a href="<?php echo esc_url(get_permalink()); ?>" rel="bookmark">
                                <?php the_title(); ?>
                            </a>
                        </h5>

                        <div class="info">
                            <ul class="list-inline">
                                <?php $archive_year  = get_the_time('Y');
                                $archive_month = get_the_time('m');
                                $archive_day = get_the_time('d'); ?>
                                <li><i class="icon-calendar"></i> <a href="<?php echo esc_url(get_day_link($archive_year, $archive_month, $archive_day)); ?>"><?php echo get_the_date(); ?></a>
                                </li>
                            </ul>
                        </div>

                        <?php if ($readmore_show_hide) { ?>
                            <div class="ifoot info">
                                <a href="<?php echo esc_url(get_permalink()); ?>" rel="bookmark" title="" class="readmore"><?php echo esc_html($readmore_text); ?> </a>
                                <?php if (get_theme_mod('post_snippet_hide_show_social_share', finley_get_default_post_snippet_social_share())) { ?>
                                    <div class="social-share">
                                        <?php get_template_part('inc/blocks/includes/template', 'social-share'); ?>
                                    </div>
                                <?php } ?>
                            </div>
                        <?php } ?>

                    </div>
                </div>
            <?php endwhile; ?>
            <?php wp_reset_postdata(); ?>
        </div>
    <?php } ?>
</div>