refining query loop

This commit is contained in:
Antoine M 2024-07-01 15:43:59 +02:00
parent e01315b972
commit 117aab7ef0

View File

@ -1,6 +1,8 @@
<?php get_header(); ?> <?php get_header(); ?>
<div class="homegrade-page-container homegrade-page--parcours">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="homegrade-page-container homegrade-page--parcours">
<?php <?php
@ -11,6 +13,9 @@
get_template_part('single-parcours-child'); get_template_part('single-parcours-child');
} }
?> ?>
</div> </div>
<?php endwhile; ?>
<?php endif; ?>
<?php get_footer(); <?php get_footer();