2021-12-13 13:11:04 +03:00
|
|
|
<?php get_header();?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div id="content">
|
|
|
|
|
|
|
|
|
|
<?//while(have_posts()):?>
|
|
|
|
|
<?the_post();?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<h1 class="post-h1" style="margin-top: 38px;"><?php wp_title('');?></h1>
|
|
|
|
|
<?$author = get_the_author();
|
|
|
|
|
if ( ! empty ( $author ) AND $author !== 'vetandlife.ru'):?>
|
|
|
|
|
<div class="post_author">
|
|
|
|
|
Автор: <?php the_author(); ?>
|
|
|
|
|
</div>
|
|
|
|
|
<?endif?>
|
|
|
|
|
|
|
|
|
|
<?if ( has_post_thumbnail() ) :?>
|
|
|
|
|
<div id="post-img">
|
|
|
|
|
<img class="img-fluid rounded" src="<?php echo get_the_post_thumbnail_url(null, 'full');?>" alt="<?the_title();?>">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="post_img_title"><?the_post_thumbnail_caption()?></div>
|
|
|
|
|
<?endif?>
|
|
|
|
|
<div class="fulltext">
|
|
|
|
|
<?the_content();?>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-03-18 22:58:41 +03:00
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
if ( is_page( array( 39828 ) ) ){
|
|
|
|
|
get_template_part('blocks/moread_all', null, array(
|
|
|
|
|
'posts_limit' => 6,
|
|
|
|
|
'category_id' => 2
|
|
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
2021-12-13 13:11:04 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php get_footer();?>
|