Files
agroexpert/category-events.php
argoexpert press 51d7df598b delete adv
2024-05-06 12:02:48 +03:00

29 lines
877 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
get_header();
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$posts = new WP_Query([
'category_name' => get_queried_object()->slug,
'post_type' => 'post',
'posts_per_page' => 10,
'orderby' => 'date',
'order' => 'ASC',
'paged' => $paged
]);
?>
<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">
<? get_template_part('content-category-events-post', null, ['posts' => $posts, 'category' => get_queried_object()->term_id]) ?>
</div>
<?php custom_pagination($posts); ?>
<a href="<?= home_url(); ?>" class="articles-preview__show-next">На главную</a>
</div>
<?php
get_footer(); ?>