REFACTOR Moving analyses-etudes post type to a subfolder for better organisation

This commit is contained in:
Antoine M 2026-02-24 17:21:35 +01:00
parent 01a6145310
commit 39fadbd763
3 changed files with 2 additions and 2 deletions

View File

@ -77,9 +77,9 @@ $types = get_terms(array(
<ul class="post-grid__list">
<?php if (isset($analyses_etudes_posts) && $analyses_etudes_posts->have_posts()) : ?>
<?php while ($analyses_etudes_posts->have_posts()) : $analyses_etudes_posts->the_post(); ?>
<?php get_template_part('template-parts/analyses-etudes/card-analyse-etude', null, array(
<?php get_template_part('template-parts/components/cards/post-card', null, array(
'ID' => get_the_ID(),
'current_post_type' => 'analyses-etudes',
)); ?>
<?php endwhile; ?>
<?php endif; ?>