add partners

This commit is contained in:
argoexpert press
2024-05-25 17:35:08 +03:00
parent 641399598f
commit 088d38c3a8
8 changed files with 87 additions and 25 deletions

View File

@@ -7,15 +7,7 @@ if ($query->have_posts()) {
while ($query->have_posts()) {
$post_count++;
$query->the_post();
get_template_part('en/content', 'post-en', ['full_width' => $post_count === 1 && $large_first_image]);
if ($post_count === ($large_first_image ? 5 : 4)) : ?>
<div class="banner-middle desktop">
<?php if (function_exists('banners_conf_display')) banners_conf_display('content_banner_desktop'); ?>
</div>
<div class="banner-middle mobile">
<?php if (function_exists('banners_conf_display')) banners_conf_display('content_banner_mobile'); ?>
</div>
<?php endif; ?>
get_template_part('en/content', 'post-en', ['full_width' => $post_count === 1 && $large_first_image]);?>
<?php
}
wp_reset_postdata();