Files
agroexpert/en/post-list-en.php

15 lines
404 B
PHP
Raw Normal View History

2024-05-24 21:37:57 +03:00
<?php
global $wp_query;
$large_first_image = $args['large_first_image'] ?? true;
$post_count = 0;
$query = $args['query'] ?? $wp_query;
if ($query->have_posts()) {
while ($query->have_posts()) {
$post_count++;
$query->the_post();
2024-05-25 17:35:08 +03:00
get_template_part('en/content', 'post-en', ['full_width' => $post_count === 1 && $large_first_image]);?>
2024-05-24 21:37:57 +03:00
<?php
}
wp_reset_postdata();
}
?>