<main>
<h1>Главная</h1>
<?php $args = array(
.................
);
$query = new WP_Query($args);
while ( $query->have_posts() ) {
$query->the_post(); ?>
<div>
<?php the_post_thumbnail();?>
<?php the_title(); ?>
</div>
<?php } ?>
</main>