45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
PHP
<?php
|
|
|
|
$more_posts = get_posts( array(
|
|
'numberposts' => 6,
|
|
'category' => 61, // пока тольео события
|
|
'meta_key' => 'startevent',
|
|
'meta_value' =>'',
|
|
'post_type' => 'post',
|
|
'post__not_in' => array($post_id),
|
|
'meta_query' => array(
|
|
array(
|
|
'key' => '_thumbnail_id',
|
|
//'compare' => 'EXISTS'
|
|
)
|
|
),
|
|
'suppress_filters' => true, // подавление работы фильтров изменения SQL запроса
|
|
) );
|
|
|
|
# вывод поста
|
|
if( $more_posts ):
|
|
$nr = 0;?>
|
|
|
|
<div class="moread_rubric">Другие мероприятия:</div>
|
|
|
|
<div class="moread">
|
|
|
|
<?php foreach($more_posts as $post):
|
|
$nr++;
|
|
setup_postdata( $post );?>
|
|
|
|
<div class="moread_card" id="moread_<?=$nr?>">
|
|
<?$imgurl = IMGSERVER.'news/512x340/'.str_replace('https://vetandlife.ru/wp-content/uploads/', '', get_the_post_thumbnail_url($post, 'full'))?>
|
|
<img src="<?php echo $imgurl;?>" 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>
|
|
|
|
<?php endforeach;?>
|
|
|
|
</div>
|
|
|
|
<?php wp_reset_postdata();
|
|
|
|
endif?>
|