Files
vij/category-parthers.php

54 lines
932 B
PHP
Raw Normal View History

2021-11-02 14:24:28 +03:00
<?php
/**
* The main template file.
*
*/
get_header();
$nn = 0;?>
<div id="content">
<ul id="nav_content">
2021-11-18 14:25:24 +03:00
<li><a href="https://vetandlife.ru">Главная</a></li>
2021-11-02 14:24:28 +03:00
<li> - <?single_cat_title()?></li>
</ul>
<h1 class="my-4"><?=single_cat_title()?></h1>
<?php if(have_posts()) :?>
<div class="search-card-box">
<?php while(have_posts()) : the_post();?>
<div class="search-card">
<div class="search-card-title"><a href="<?the_permalink();?>"><?the_title();?></a></div>
<?if ( has_post_thumbnail() ) :?>
<img class="search-card-img" src="<?php echo get_the_post_thumbnail_url(null, 'full'); ?>" width="180" alt="<?the_title();?>">
<?endif?>
2022-02-21 16:41:47 +03:00
2021-11-02 14:24:28 +03:00
</div>
<?php endwhile;?>
</div>
<?get_template_part( '/blocks/paginator');?>
<?else:?>
Здесь пока нет публикаций
<?php endif;?>
</div>
<?php get_footer(); ?>