2021-09-16 12:14:35 +03:00
|
|
|
|
<?php get_header();?>
|
2021-09-18 01:30:09 +03:00
|
|
|
|
|
2021-09-20 01:07:53 +03:00
|
|
|
|
|
2021-09-24 23:18:38 +03:00
|
|
|
|
|
2021-09-20 01:07:53 +03:00
|
|
|
|
|
2021-09-24 23:18:38 +03:00
|
|
|
|
<div id="content">
|
|
|
|
|
|
|
2021-09-18 01:30:09 +03:00
|
|
|
|
<?//while(have_posts()):?>
|
2021-09-24 23:18:38 +03:00
|
|
|
|
<?the_post();?>
|
|
|
|
|
|
|
2021-09-18 01:30:09 +03:00
|
|
|
|
|
|
|
|
|
|
<?php $category = get_the_category();
|
|
|
|
|
|
$category_id = $category[0]->term_id;
|
|
|
|
|
|
$category_link = get_category_link($category_id);
|
2021-11-11 23:15:08 +03:00
|
|
|
|
$post_id = get_the_ID();
|
2021-09-18 01:30:09 +03:00
|
|
|
|
?>
|
|
|
|
|
|
|
2021-09-24 23:18:38 +03:00
|
|
|
|
<ul id="nav_content">
|
2021-10-10 15:16:51 +03:00
|
|
|
|
<li><a href="<?=get_site_url()?>">Главная</li>
|
2021-09-24 23:18:38 +03:00
|
|
|
|
<li>-<li>
|
|
|
|
|
|
<li><a href="<?=$category_link?>"><?=$category['0']->name;?></a></li>
|
|
|
|
|
|
<li>-<li>
|
|
|
|
|
|
<li><?=mb_substr(get_the_title(), 0, 50);?>...</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
2021-09-18 01:30:09 +03:00
|
|
|
|
<div class="post_info">
|
2021-09-20 01:07:53 +03:00
|
|
|
|
<div class="post_info_sub">
|
|
|
|
|
|
<span class="post_link_category"><a href="<?=$category_link?>"><?=$category['0']->name;?></a></span>, <?php the_time('j F Y, G:i');?>
|
2021-09-28 22:25:21 +03:00
|
|
|
|
</div>
|
2021-09-24 23:18:38 +03:00
|
|
|
|
<div class="post_info_sub post_info_social">
|
2021-10-09 22:59:32 +03:00
|
|
|
|
<?php include get_template_directory().'/blocks/social-share.php';?>
|
2021-09-20 01:07:53 +03:00
|
|
|
|
</div>
|
2021-09-18 01:30:09 +03:00
|
|
|
|
</div>
|
2022-01-11 23:06:02 +03:00
|
|
|
|
<div id="fulltext">
|
2021-09-28 22:25:21 +03:00
|
|
|
|
<h1 class="post-h1"><?php wp_title('');?></h1>
|
2021-09-24 23:18:38 +03:00
|
|
|
|
<?$author = get_the_author();
|
|
|
|
|
|
if ( ! empty ( $author ) AND $author !== 'vetandlife.ru'):?>
|
2021-09-20 01:07:53 +03:00
|
|
|
|
<div class="post_author">
|
2022-02-21 20:11:03 +03:00
|
|
|
|
Автор: <?=the_author_posts_link()?>
|
2021-09-20 01:07:53 +03:00
|
|
|
|
</div>
|
2021-09-24 23:18:38 +03:00
|
|
|
|
<?endif?>
|
|
|
|
|
|
|
2021-09-18 01:30:09 +03:00
|
|
|
|
<div class="publ_expert"><?php the_excerpt();?></div>
|
2021-09-24 23:18:38 +03:00
|
|
|
|
<?if ( has_post_thumbnail() ) :?>
|
2021-09-27 00:07:02 +03:00
|
|
|
|
<div id="post-img">
|
|
|
|
|
|
<img class="img-fluid rounded" src="<?php echo get_the_post_thumbnail_url(null, 'full');?>" alt="<?the_title();?>">
|
|
|
|
|
|
</div>
|
2021-09-24 23:18:38 +03:00
|
|
|
|
<div class="post_img_title"><?the_post_thumbnail_caption()?></div>
|
|
|
|
|
|
<?endif?>
|
2021-11-10 21:21:00 +03:00
|
|
|
|
<div class="fulltext">
|
2021-11-11 19:30:47 +03:00
|
|
|
|
<?the_content();?>
|
2021-11-10 21:21:00 +03:00
|
|
|
|
</div>
|
2021-11-11 19:30:47 +03:00
|
|
|
|
<div class="promo-agregators">
|
|
|
|
|
|
<p>Свежие отраслевые новости на нашем канале в <span class="promo-telega"><a href="https://t.me/ViZHuvizh" target="_blank">Telegram</a></span></p>
|
|
|
|
|
|
<p>Добавьте «Ветеринарию и жизнь» в избранное в <a href="https://yandex.ru/news/?favid=254162793" target="_blank"><span style="color:red; font-weight: bold;">Я</span><span style="font-weight: bold; color:black;">НДЕКС.НОВОСТИ</span></a></p>
|
|
|
|
|
|
</div>
|
2021-09-18 01:30:09 +03:00
|
|
|
|
<!--<p><small class="text-muted"><?php the_tags('');?></small></p> -->
|
2021-09-24 23:18:38 +03:00
|
|
|
|
<?//endwhile;?>
|
2021-09-18 01:30:09 +03:00
|
|
|
|
|
2021-09-20 01:07:53 +03:00
|
|
|
|
<?php include get_template_directory().'/blocks/yets.php';?>
|
2021-09-24 23:18:38 +03:00
|
|
|
|
|
|
|
|
|
|
<div id="tags">
|
|
|
|
|
|
<?php the_tags();?>
|
|
|
|
|
|
</div>
|
2021-09-18 01:30:09 +03:00
|
|
|
|
|
|
|
|
|
|
<div class="post_panel_info">
|
2021-09-20 01:07:53 +03:00
|
|
|
|
<div class="post_panel_info_sub">
|
|
|
|
|
|
<span class="post_link_category"><a href="<?=$category_link?>"><?=$category['0']->name;?></a></span>, <?php the_time('j F Y, G:i');?>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="post_panel_info_sub">
|
2021-10-10 15:16:51 +03:00
|
|
|
|
<!--Поделиться <i class="fas fa-share-square btn_soc_post"></i>--> <?php include get_template_directory().'/blocks/social-share.php';?>
|
2021-09-20 01:07:53 +03:00
|
|
|
|
</div>
|
2021-09-18 01:30:09 +03:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2022-01-11 23:06:02 +03:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2021-09-18 01:30:09 +03:00
|
|
|
|
<?php include get_template_directory().'/blocks/moread.php';?>
|
|
|
|
|
|
|
2021-11-01 02:22:21 +03:00
|
|
|
|
<div class="publ-to-main">
|
|
|
|
|
|
<button class="more_button" onclick="location.href='<?=get_site_url()?>/page/2'" type="button">
|
|
|
|
|
|
На главную</button>
|
|
|
|
|
|
</div>
|
2021-09-20 01:07:53 +03:00
|
|
|
|
|
2021-11-01 02:22:21 +03:00
|
|
|
|
|
2021-09-18 01:30:09 +03:00
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php get_footer();?>
|