79 lines
1.3 KiB
PHP
79 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* The main template file.
|
|
*
|
|
*/
|
|
|
|
get_header();
|
|
$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
|
|
|
|
] );
|
|
|
|
*/
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div id="content">
|
|
|
|
<ul id="nav_content">
|
|
<li><a href="https://vetandlife.ru">Главная</li>
|
|
<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?>
|
|
<!--<div class="mini-card-body">
|
|
<div class="news_date"><?the_time('j F Y, G:i');?></div>
|
|
</div>-->
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php endwhile;?>
|
|
</div>
|
|
|
|
<?get_template_part( '/blocks/paginator');?>
|
|
|
|
|
|
<?else:?>
|
|
|
|
Здесь пока нет публикаций
|
|
|
|
<?php endif;?>
|
|
|
|
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|