21 lines
641 B
PHP
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>
|