Files
vij/blocks/mainnews.php

35 lines
940 B
PHP
Raw Normal View History

2021-10-11 22:29:11 +03:00
<?php
$params = array(
'posts_per_page' => -1, // нужно для отображения всех постов, без разделения по страницам
'post__in' => get_option( 'sticky_posts' ),
'posts_per_page' => 1
);
$q = new WP_Query( $params );
if ( $q->have_posts() ) :
$q->the_post();
$mainpost_id = get_the_ID();
?>
<div class="main-card">
<?if ( has_post_thumbnail() ) :?>
<div class="card-img-top">
2021-11-07 22:43:07 +03:00
<a href="<?the_permalink();?>"><img src="<?php echo get_the_post_thumbnail_url(null, 'moread'); ?>" alt="<?the_title();?>"></a>
2021-10-11 22:29:11 +03:00
</div>
<?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>
<?php endif; wp_reset_postdata();