77 lines
1.8 KiB
PHP
77 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* The main template file.
|
|
*
|
|
*/
|
|
|
|
get_header();
|
|
$nn = 0;?>
|
|
|
|
|
|
|
|
<?php $query = new WP_Query(
|
|
array(
|
|
'category__not_in' => array(2, 15, 18 ,44, 1028),
|
|
'meta_query' => array(
|
|
array(
|
|
'key' => '_thumbnail_id',
|
|
//'compare' => 'EXISTS'
|
|
)
|
|
)
|
|
)
|
|
); # фильтруем рубрики
|
|
?>
|
|
|
|
<div id="content">
|
|
|
|
<h1 class="my-4">Главное</h1>
|
|
|
|
<?php if($query->have_posts()) : while($query->have_posts()) : $query->the_post();?>
|
|
|
|
<?$nn++;?>
|
|
|
|
<?if ($nn == 1):?>
|
|
|
|
<div class="main-card">
|
|
|
|
<?if ( has_post_thumbnail() ) :?>
|
|
<a href="<?the_permalink();?>"><img class="card-img-top" src="<?php echo get_the_post_thumbnail_url(null, 'full'); ?>" alt="<?the_title();?>"></a>
|
|
<?endif?>
|
|
|
|
<h2 class="main-card-title"><a href="<?the_permalink();?>"><?the_title();?></a></h2>
|
|
<div class="main-card-body">
|
|
<div class="main-card-text"><a href="<?the_permalink();?>"><?the_excerpt();?></a></div>
|
|
<div class="news_date"><?the_time('j F Y, G:i');?></div>
|
|
</div>
|
|
</div>
|
|
|
|
<?elseif ($nn == 2):?>
|
|
<div class="mini-card-block">
|
|
<?endif?>
|
|
|
|
<?if ($nn > 1):?>
|
|
|
|
<div class="mini-card">
|
|
<?if ( has_post_thumbnail() ) :?>
|
|
<a href="<?the_permalink();?>"><img class="mini-card-img" src="<?php echo get_the_post_thumbnail_url(null, 'full'); ?>" alt="<?the_title();?>"></a>
|
|
<?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>
|
|
|
|
<?endif?>
|
|
|
|
<?php endwhile;?>
|
|
|
|
</div> <!--//end minicard block -->
|
|
|
|
|
|
<?php endif;?>
|
|
|
|
|
|
</div> <!-- end content -->
|
|
|
|
|
|
<?php get_footer(); ?>
|