<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php
get_the_ID();
the_title();
the_excerpt();
echo get_the_date();
?>
<a class="br-button-el-link" href="<?php the_permalink(); ?>">Подробнее</a>
<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>