Есть проблема в теме WP. Что-то криво написал. Есть шаблон записи и сайдбара. В сайдбаре анонсы последних новостей, в т.ч. есть дата публикации. При переходе на последнюю(верхнюю) новость в сайдбаре там пропадает дата и отображается только в самом посте. привожу код single.php
<?php get_header(); ?>
<main>
<div class="container">
<div class="row">
<div class="col-md-9 page-content">
<article>
<?php if (have_posts()) : ?>
<?php while (have_posts()):the_post(); ?>
<h1><? the_title();?></h1>
<span><?php the_date('j F Y');?></span>
<?php the_content();?>
<?php endwhile;?>
<?php else : ?>
<?php endif; ?>
</article>
</div>
<div class="col-md-3">
<?php get_sidebar();?>
</div>
</div>
</div>
</main>
<?php get_footer(); ?>
и sidebar.php (второй цикл get_posts выводит новости)
<aside>
<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
<?php endif; ?>
<div class="events-list-sidebar list-sidebar">
<?php $args = array(
'post_type' => 'event',
'suppress_filters' => false
);
$event_posts = get_posts( $args );
foreach( $event_posts as $post ){ setup_postdata($post);?>
<div class="sidebar-list-item clearfix">
<a href="<?php esc_url(the_permalink()) ?>">
<figure class="item-img"><?php the_post_thumbnail(array(70,70),true); ?></figure>
<span class="item-date"><?php echo eo_get_the_start('j F Y');?></span>
<h4><?php the_title(); ?></h4>
</a>
</div>
<?php }
wp_reset_postdata(); ?>
</div>
<?php echo do_shortcode('[do_widget id=text-3]');?>
<div class="list-sidebar">
<?php $args = array(
'category' => '6'
);
$news_posts = get_posts( $args );
foreach( $news_posts as $post ){ setup_postdata($post);?>
<div class="sidebar-list-item clearfix">
<a href="<?php esc_url(the_permalink()) ?>">
<figure class="item-img"><?php the_post_thumbnail(array(70,70),true); ?></figure>
<span class="item-date"><?php echo the_date('j F Y');?></span>
<h4><?php the_title(); ?></h4>
</a>
</div>
<?php }
wp_reset_postdata(); ?>
</div>
</aside>
UPD: Если сайдбар поставить слева, то дата не выводится у первой(нижней) записи, НО не в анонсе, а в странице.