Files
agroexpert/front-page.php

20 lines
828 B
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:24:30 +03:00
<?php get_template_part('partials/pinned-post-mob'); ?>
2024-03-01 17:47:03 +03:00
<?php get_template_part('partials/rubrics-mobile'); ?>
<div class="articles-preview">
<?php
$args = array(
'post_type' => 'post', // Или ваш пользовательский тип постов, если необходимо
'posts_per_page' => 10, // Количество постов на странице
'cat' => [-17, -20, -21]
);
$query = new WP_Query($args);
?>
<?php get_template_part('partials/post-list', null, ['large_first_image' => false, 'query' => $query]); ?>
</div>
<button class="articles-preview__show-next">Загрузить еще</button>
</div>
2024-04-03 22:24:30 +03:00
<?php get_footer(); ?>