carhop__dynamiques-theme__P.../template-parts/revues/table-matiere-revue.php
Nonimart d94fcf4b90
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Showing authors on all articles cards
2025-09-16 15:29:20 +02:00

21 lines
641 B
PHP

<?php
$revueID = $args['revueID'];
$issue_related_articles = get_field('articles', $revueID);
?>
<section class="table-matieres">
<h3 class="content-tab__title">Table des matières</h3>
<ul class="post-grid__list article-grid__list">
<?php foreach ($issue_related_articles as $article) : ?>
<?php get_template_part('template-parts/articles/card-article', null, array(
'date' => $article->post_date,
'image' => get_the_post_thumbnail_url($article->ID),
'link' => get_the_permalink($article->ID),
'ID' => $article->ID,
'showAuthors' => true,
)); ?>
<?php endforeach; ?>
</ul>
</section>