WP Query

by Anatoly Kulikov

HTML

<?php $query = new WP_Query(array('post_type' => 'page', 'page_id' => 12)); while ($query->have_posts()) : $query->the_post(); ?>
<figure class="profuctions__item-figure ">
<?php $thumb_id = get_post_thumbnail_id(); $thumb_cover_url = wp_get_attachment_image_src($thumb_id, 'full', true); ?>
  <img src="<?php echo $thumb_cover_url[0]; ?>" alt="">
  <figcaption>
    <h2><?php the_title(); ?></h2>
    <a href="<?php the_permalink(); ?>">Перейти</a>
  </figcaption>
</figure>
<?php endwhile; wp_reset_postdata(); ?>