add folder EN
This commit is contained in:
23
en/post-list-en.php
Normal file
23
en/post-list-en.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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();
|
||||
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; ?>
|
||||
<?php
|
||||
}
|
||||
wp_reset_postdata();
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user