16 lines
412 B
PHP
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;
|