Files
agroexpert/front-page.php

24 lines
1.1 KiB
PHP
Raw Normal View History

2024-03-01 17:47:03 +03:00
<?php get_header(); ?>
2024-04-03 22:24:30 +03:00
2024-03-01 17:47:03 +03:00
<div class="content-middle articles-wrapper">
2024-04-03 22:58:59 +03:00
<?php include(get_template_directory().'/partials/pinned-post-mob.php');?>
2025-05-10 00:00:09 +03:00
<?php get_template_part('partials/rubrics-mobile-menu'); ?>
2024-03-01 17:47:03 +03:00
<div class="articles-preview">
<?php
$args = array(
'post_type' => 'post', // Или ваш пользовательский тип постов, если необходимо
2024-04-03 22:58:59 +03:00
'post__not_in' => [ $mainpost_id ],
'posts_per_page' => 16, // Количество постов на странице
2024-04-04 10:48:19 +03:00
'orderby' => 'date', // сортировка по дате
'order' => 'DESC', // по убыванию (сначала новые)
2024-04-04 16:25:07 +03:00
'ignore_sticky_posts' => 1,
2024-05-22 21:02:50 +03:00
'cat' => [ 19 ]
2024-03-01 17:47:03 +03:00
);
$query = new WP_Query($args);
?>
<?php get_template_part('partials/post-list', null, ['large_first_image' => false, 'query' => $query]); ?>
2025-04-22 22:54:20 +03:00
<div class="frontpage-next"><a href="https://agroexpert.press/all-events/page/2/">Еще новости</a></div>
2024-03-01 17:47:03 +03:00
</div>
</div>
2024-04-03 22:24:30 +03:00
<?php get_footer(); ?>