Files
vij/tag.php

50 lines
1.4 KiB
PHP
Raw Normal View History

2023-11-06 16:21:36 +03:00
2021-12-23 17:22:52 +03:00
<div>
2023-11-06 16:21:36 +03:00
<?php sleep(2); get_header(); ?>
2021-12-23 17:22:52 +03:00
<div id="content">
<ul id="nav_content">
<li><a href="<?=get_home_url()?>">Главная</a></li>
<li> - #<?single_tag_title()?></li>
</ul>
<h1 class="tag-h1">#<?single_tag_title()?></h1>
<?php if(have_posts()) :?>
<div class="mini-card-block">
<?while(have_posts()) : the_post();?>
<div class="mini-card">
<?if ( has_post_thumbnail() ) :?>
<div class="mini-card-img">
2022-11-11 23:49:39 +03:00
<?$imgurl = IMGSERVER.'news/512x340/'.str_replace('https://vetandlife.ru/wp-content/uploads/', '', get_the_post_thumbnail_url(null, 'full'))?>
<a href="<?the_permalink();?>"><img class="mini-card-img" src="<?php echo $imgurl; ?>" alt="<?the_title();?>"></a>
2021-12-23 17:22:52 +03:00
<?if( has_tag( 'видео' ) ):?>
<span class="play-card"></span>
<?endif?>
</div>
<?endif?>
<h2 class="mini-card-title"><a href="<?the_permalink();?>"><?the_title();?></a></h2>
<div class="mini-card-body">
<div class="news_date"><?the_time('j F Y, G:i');?></div>
</div>
</div>
<?php endwhile;?>
</div>
<?else:?>
Публикации не найдены
<?php endif;?>
<?get_template_part( '/blocks/paginator');?>
</div>
<?php get_footer(); ?>