Files
vij/category-61.php

79 lines
1.3 KiB
PHP
Raw Normal View History

2021-09-30 13:51:38 +03:00
<?php
/**
* The main template file.
*
*/
get_header();
2021-11-18 14:25:24 +03:00
$nn = 0;
$category = get_queried_object();
/**
$query = new WP_Query( [
'orderby' => 'meta_value_date',
'order' => 'ASC',
'meta_key' => 'startevent',
'post_type' => 'post',
'category_name' => $category->name
] );
*/
?>
2021-09-30 13:51:38 +03:00
<div id="content">
<ul id="nav_content">
2021-11-18 14:25:24 +03:00
<li><a href="https://vetandlife.ru">Главная</li>
2021-09-30 13:51:38 +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">
2021-11-18 14:25:24 +03:00
<?php while(have_posts()) :
the_post();
?>
2021-09-30 13:51:38 +03:00
<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();?>">
2021-11-18 14:25:24 +03:00
<?endif?>
<!--<div class="mini-card-body">
2021-09-30 13:51:38 +03:00
<div class="news_date"><?the_time('j F Y, G:i');?></div>
2021-11-18 14:25:24 +03:00
</div>-->
2021-09-30 13:51:38 +03:00
</div>
<?php endwhile;?>
</div>
<?get_template_part( '/blocks/paginator');?>
<?else:?>
Здесь пока нет публикаций
<?php endif;?>
</div>
<?php get_footer(); ?>