<?php if (have_posts()) { while (have_posts()) { the_post(); ?>
<div class="contentItem">
<a href="<?php the_permalink(); ?>" class="news__link"><?php the_title(); ?></a>
<p class="news__date">Опубликовано: <?php the_date(); ?></p>
<?php the_post_thumbnail( 'thambnail' ) ?>
<div class="news__text">
<?php the_excerpt(); ?>
</div>
</div>
<?php } // конец while ?>
<?php the_posts_pagination(); ?>
<?php } // конец if ?>