Na lądzie i w powietrzu:
dążymy do lepszych warunków pracy w branży lotniczej.
Solidarity is a force stronger than gravity.
<?php
// Arguments for WP_Query
$args = array(
'posts_per_page' => 6, // Number of recent posts
'post_status' => 'publish'
);
$recent_query = new WP_Query($args);
if ($recent_query->have_posts()) : ?>
<div class="recent-posts-grid">
<?php while ($recent_query->have_posts()) : $recent_query->the_post(); ?>
<div class="recent-post-cover">
<a href="<?php the_permalink(); ?>">
<?php if (has_post_thumbnail()) : ?>
<?php the_post_thumbnail('large'); ?>
<?php else : ?>
<img src="https://via.placeholder.com/600x400?text=No+Image" alt="<?php the_title_attribute(); ?>">
<?php endif; ?>
<div class="cover-title">
<?php the_title(); ?>
</div>
</a>
</div>
<?php endwhile; ?>
</div>
<?php wp_reset_postdata(); ?>
<?php endif; ?>