add spavochniki and rfo

This commit is contained in:
argoexpert press
2025-05-26 19:33:14 +03:00
parent 569c838c47
commit f2d7deeedf
10 changed files with 500 additions and 7 deletions

28
archive-spravochniki.php Normal file
View File

@@ -0,0 +1,28 @@
<?php get_header(); ?>
<div class="content-middle articles-wrapper">
<?php get_template_part('partials/rubrics-mobile'); ?>
<div class="section-title desktop">
<?php
if (is_category()):
$category = get_the_category();
$title = !empty($category) ? $category[0]->name : get_the_title();
?>
<h1 class="section-title__title"><?= $title ?></h1>
<?php endif; ?>
</div>
<div class="articles-preview">
<?php
$paged = (get_query_var('paged')) ? absint(get_query_var('paged')) : 1;
$args = array(
'post_type' => 'post',
'posts_per_page' => 10,
'paged' => $paged
);
$query = new WP_Query($args);
?>
<?php get_template_part('partials/post-list', null, ['query' => $wp_query]); ?>
</div>
<?php custom_pagination(); ?>
</div>
<?php get_footer(); ?>