102 lines
3.1 KiB
PHP
102 lines
3.1 KiB
PHP
<?php
|
||
/**
|
||
* The main template file.
|
||
*
|
||
*/
|
||
|
||
get_header();
|
||
$nn = 0;?>
|
||
|
||
<div id="content">
|
||
|
||
<h1 id="mainpage-title">Главное</h1>
|
||
|
||
<?include(get_template_directory().'/blocks/mainnews.php');?>
|
||
|
||
<?php $query = new WP_Query(
|
||
array(
|
||
'category__in' => array(2),
|
||
'post__not_in' => array($mainpost_id),
|
||
'posts_per_page' => 21,
|
||
'meta_query' => array(
|
||
array(
|
||
'key' => '_thumbnail_id',
|
||
//'compare' => 'EXISTS'
|
||
)
|
||
)
|
||
)
|
||
); # фильтруем рубрики
|
||
?>
|
||
|
||
<?php if($query->have_posts()) : ?>
|
||
|
||
|
||
<div class="mini-card-block">
|
||
|
||
<?php while($query->have_posts()) : $query->the_post();?>
|
||
|
||
<?$nn++?>
|
||
|
||
<?if ($nn == 10):?>
|
||
|
||
<div class="mini-card">
|
||
<?$block_href = "https://vetandlife.ru/sobytiya/veterinariya-i-zhizn-obyavlyaet-o-novom-fotokonkurse-sovremennoe-zhivotnovodstvo-i-veterinariya/";?>
|
||
|
||
<div class="mini-card-img">
|
||
<a href="<?=$block_href?>">
|
||
<img class="mini-card-img" src="https://vetandlife.ru/wp-content/uploads/2022/01/Nikola-Stojadinovic-iStock.jpg" alt="«Ветеринария и жизнь» объявляет о новом фотоконкурсе «Современное животноводство и ветеринария»">
|
||
</a>
|
||
</div>
|
||
<h2 class="mini-card-title"><a href="<?=$block_href?>">«Ветеринария и жизнь» объявляет о новом фотоконкурсе «Современное животноводство и ветеринария»</a></h2>
|
||
<div class="mini-card-body">
|
||
<div class="news_date">до 31 марта 2022 года</div>
|
||
</div>
|
||
</div>
|
||
|
||
<?endif?>
|
||
|
||
<div class="mini-card">
|
||
<?if ( has_post_thumbnail() ) :?>
|
||
<div class="mini-card-img">
|
||
<a href="<?the_permalink();?>"><img class="mini-card-img" src="<?php echo get_the_post_thumbnail_url(); ?>" alt="<?the_title();?>">
|
||
<?if( has_tag( 'видео' ) ):?>
|
||
<span class="play-card"></span>
|
||
<?endif?>
|
||
</a>
|
||
</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>
|
||
|
||
|
||
|
||
|
||
<?php endif;?>
|
||
|
||
<?php wp_reset_postdata();?>
|
||
|
||
<div class="publ-to-main">
|
||
<button class="more_button" onclick="location.href='<?=get_category_link(2)?>/page/2'" type="button">
|
||
Показать ещe</button>
|
||
|
||
</div>
|
||
|
||
|
||
<?get_template_part( '/blocks/opinion', null, ['subclass' => 'mob-lite']);?>
|
||
|
||
<?get_template_part( '/blocks/citats', null, ['subclass' => 'mob-lite']);?>
|
||
|
||
|
||
</div> <!-- end content -->
|
||
|
||
|
||
<?php get_footer(); ?>
|