30 lines
769 B
PHP
30 lines
769 B
PHP
<?php get_header(); ?>
|
|
|
|
<main class="main">
|
|
<div class="maintitle">
|
|
<h1><?php single_cat_title(); ?></h1>
|
|
<div class="h-telega"><a href="https://t.me/sportpressa" target="_blank">@sportpressa</a></div>
|
|
</div>
|
|
|
|
<?php if (category_description() && !is_paged()) : ?>
|
|
<div class="category-description">
|
|
<?php echo category_description(); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php get_template_part('template-parts/content', 'cards'); ?>
|
|
|
|
<?php
|
|
// Пагинация
|
|
the_posts_pagination(array(
|
|
'mid_size' => 2,
|
|
'prev_text' => '« Предыдущая',
|
|
'next_text' => 'Следующая »',
|
|
));
|
|
?>
|
|
</main>
|
|
|
|
<?php get_sidebar(); ?>
|
|
<?php get_footer(); ?>
|
|
|