2024-03-01 17:47:03 +03:00
|
|
|
|
<?php
|
2024-03-12 09:16:19 +03:00
|
|
|
|
get_header();
|
2024-03-01 17:47:03 +03:00
|
|
|
|
|
2024-05-06 12:02:48 +03:00
|
|
|
|
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
|
|
|
|
|
|
|
2024-03-12 09:16:19 +03:00
|
|
|
|
$posts = new WP_Query([
|
|
|
|
|
|
'category_name' => get_queried_object()->slug,
|
|
|
|
|
|
'post_type' => 'post',
|
|
|
|
|
|
'posts_per_page' => 10,
|
|
|
|
|
|
'orderby' => 'date',
|
2024-05-06 12:02:48 +03:00
|
|
|
|
'order' => 'ASC',
|
|
|
|
|
|
'paged' => $paged
|
2024-03-12 09:16:19 +03:00
|
|
|
|
]);
|
2024-03-01 17:47:03 +03:00
|
|
|
|
?>
|
|
|
|
|
|
<div class="content-middle articles-wrapper">
|
|
|
|
|
|
<?php get_template_part('partials/rubrics-mobile'); ?>
|
|
|
|
|
|
<div class="section-title border-top">
|
|
|
|
|
|
<h1 class="section-title__title"><?= get_queried_object()->name ?></h1>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="articles-preview">
|
2024-03-12 09:16:19 +03:00
|
|
|
|
<? get_template_part('content-category-events-post', null, ['posts' => $posts, 'category' => get_queried_object()->term_id]) ?>
|
2024-03-01 17:47:03 +03:00
|
|
|
|
</div>
|
|
|
|
|
|
<?php custom_pagination($posts); ?>
|
|
|
|
|
|
<a href="<?= home_url(); ?>" class="articles-preview__show-next">На главную</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
|
2024-03-12 09:16:19 +03:00
|
|
|
|
get_footer(); ?>
|