carhop__dynamiques-theme__P.../template-parts/search/revue-innersearch-grid.php
Nonimart d5f86028c1
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Implkementing innersearch revues and refgactoring search results
2025-10-16 16:19:22 +02:00

16 lines
412 B
PHP

<?php
if ($articles->have_posts()) :
while ($articles->have_posts()) : $articles->the_post();
get_template_part('template-parts/articles/card-article', null, array(
'date' => get_the_date(),
'image' => get_the_post_thumbnail_url(),
'link' => get_the_permalink(),
'ID' => get_the_ID(),
'showAuthors' => true,
));
endwhile;
else :
echo '<p>Aucun article trouvé.</p>';
endif;