2024-05-22 21:18:03 +03:00
|
|
|
<?php get_header( 'en' ); ?>
|
|
|
|
|
|
|
|
|
|
<div class="content-middle articles-wrapper">
|
2024-05-24 21:37:57 +03:00
|
|
|
<?php include(get_template_directory().'/en/pinned-post-mob-en.php');?>
|
2024-05-22 21:18:03 +03:00
|
|
|
<?php get_template_part('partials/rubrics-mobile'); ?>
|
|
|
|
|
<div class="articles-preview">
|
|
|
|
|
<?php
|
|
|
|
|
$args = array(
|
|
|
|
|
'post_type' => 'post', // Или ваш пользовательский тип постов, если необходимо
|
|
|
|
|
'post__not_in' => [ $mainpost_id ],
|
|
|
|
|
'posts_per_page' => 10, // Количество постов на странице
|
|
|
|
|
'orderby' => 'date', // сортировка по дате
|
|
|
|
|
'order' => 'DESC', // по убыванию (сначала новые)
|
|
|
|
|
'ignore_sticky_posts' => 1,
|
2024-05-24 21:37:57 +03:00
|
|
|
'cat' => EN_PARTS
|
2024-05-22 21:18:03 +03:00
|
|
|
);
|
|
|
|
|
$query = new WP_Query($args);
|
|
|
|
|
?>
|
2024-05-24 21:37:57 +03:00
|
|
|
<?php get_template_part('en/post-list-en', null, ['large_first_image' => false, 'query' => $query]); ?>
|
2024-05-22 21:18:03 +03:00
|
|
|
</div>
|
|
|
|
|
<button class="articles-preview__show-next">More Read</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<?php get_footer( 'en' ); ?>
|