HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
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,pcntl_unshare,
Upload Files
File: /var/www/zaklada/wp-content/themes/zaklada/page-elements/element16.php
<!-- latest news -->
<section class="latest-news">
    <h1 class="latest-news__title"><?= __('Posljednje novosti', 'dinamo'); ?></h1>
    <div class="latest-news__list">

        <?php $posts_query = new WP_Query( array(
            'post_type' => 'post',
            'posts_per_page' => 4
        ) );

        // The Loop
        if ( $posts_query->have_posts() ) {


            while ($posts_query->have_posts()) {
                $posts_query->the_post();
                $thumbnail_id = get_post_thumbnail_id( $post->ID );
                $image_alt = get_image_alt($thumbnail_id);

                ?>
                <a href="<?= get_the_permalink(); ?>" class="news-box-home">
                    <img data-src="<?= get_the_post_thumbnail_url(null, '9x6_small'); ?>" class="lazyload news-box-home__img" alt="<?= $image_alt; ?>">
                    <!-- <time class="news-box-home__date"><?= get_the_date('d.m.Y.') ?></time> -->
                    <div class="news-box-home__text-wrap">
                        <h2 class="news-box-home__title"><?= the_title(); ?></h2>
                    </div>
                </a>
            <?php }
            wp_reset_postdata();
        } ?>

    </div>
</section>