moread and yest

This commit is contained in:
arlemp@selectel.ru
2021-11-11 23:15:08 +03:00
parent 6ecfa0549a
commit 00e5dd181a
6 changed files with 9 additions and 6 deletions

View File

@@ -10,12 +10,13 @@ $posts = get_posts( array(
'meta_key' => '',
'meta_value' =>'',
'post_type' => 'post',
'post__not_in' => array($post_id),
'meta_query' => array(
array(
'key' => '_thumbnail_id',
//'compare' => 'EXISTS'
)
),
),
'suppress_filters' => true, // подавление работы фильтров изменения SQL запроса
) );
@@ -30,7 +31,7 @@ if( $posts ):?>
setup_postdata( $post );?>
<div class="moread_card">
<img src="<?php echo get_the_post_thumbnail_url($post, 'moread');?>" alt="<?the_title();?>">
<img src="<?php echo get_the_post_thumbnail_url($post);?>" alt="<?the_title();?>">
<div class="moread_title"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></div>
<div class="moread_date"><?the_time('j F Y, G:i');?></div>
</div>