24 lines
1.1 KiB
PHP
24 lines
1.1 KiB
PHP
<?php get_header(); ?>
|
|
|
|
<div class="content-middle articles-wrapper">
|
|
<?php include(get_template_directory().'/partials/pinned-post-mob.php');?>
|
|
<?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' => 12, // Количество постов на странице
|
|
'orderby' => 'date', // сортировка по дате
|
|
'order' => 'DESC', // по убыванию (сначала новые)
|
|
'ignore_sticky_posts' => 1,
|
|
'cat' => [ 19 ]
|
|
);
|
|
$query = new WP_Query($args);
|
|
?>
|
|
<?php get_template_part('partials/post-list', null, ['large_first_image' => false, 'query' => $query]); ?>
|
|
<div class="frontpage-next"><a href="https://agroexpert.press/category/all-events/page/2/">Еще новости</a></div>
|
|
</div>
|
|
</div>
|
|
<?php get_footer(); ?>
|