Добрый день! Есть код, в котором есть блок "live_fresg_post_img" . В этом блоке в стилях в background пытаюсь вывести url thumbnail. Но он его не выводит. Хотя на соседней странице все работаем нормально. Подскажите в чем причина ?
<div class="right">
<?php
$args = array(
'post_type' => 'umira_live',
'numberposts' => '1',
'tax_query' => array(
array(
'taxonomy' => 'umira_live_taxonomi',
'field' => 'id',
'terms' => array(8),
)
),
'post_status' => 'publish', );
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){ ?>
<div class="live_fresh_post">
<div class="live_fresg_post_img" style="background: url('<?php the_post_thumbnail_url('large')?>') center center no-repeat; background-size: cover;">
</div>
<a href="<?php echo get_permalink($recent['ID']) ?>"><?php echo $recent["post_title"]?></a>
<p><?php echo $recent['post_content']?></p>
</div>
<?php } ?>
</div>