Files
agroexpert/archive-spravochniki.php

31 lines
1004 B
PHP
Raw Permalink Normal View History

2025-09-03 00:13:32 +03:00
<?php get_header( 'rfo' ); ?>
2025-05-26 19:33:14 +03:00
<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>
2025-09-03 00:13:32 +03:00
<h1><?php post_type_archive_title(); ?></h1>
2025-05-26 19:33:14 +03:00
<?php endif; ?>
</div>
<div class="articles-preview">
<?php
$paged = (get_query_var('paged')) ? absint(get_query_var('paged')) : 1;
$args = array(
2025-09-03 00:13:32 +03:00
'post_type' => 'spravochniki',
2025-05-26 19:33:14 +03:00
'posts_per_page' => 10,
'paged' => $paged
);
$query = new WP_Query($args);
?>
2025-09-03 00:13:32 +03:00
<?php //get_template_part('partials/post-list', null, ['query' => $wp_query]); ?>
2025-05-26 19:33:14 +03:00
</div>
2025-09-03 00:13:32 +03:00
<?php //custom_pagination(); ?>
2025-05-26 19:33:14 +03:00
</div>
2025-09-03 00:13:32 +03:00
<?php get_footer( 'rfo' ) ; ?>