carhop__carhop-theme__DEV/template-parts/authors/authors-list.php
2026-02-24 17:28:07 +01:00

21 lines
458 B
PHP

<?php
$postId = $args['postId'];
$componentTitle = 'Auteur·e·s de l\'article';
$authors = get_field('authors', $postId);
?>
<section class="authors-list">
<h3 class="authors-list__title"><?php echo $componentTitle; ?></h3>
<?php foreach ($authors as $author) : ?>
<?php get_template_part(
'template-parts/components/cards/author-card',
null,
array(
'ID' => $author->ID,
)
); ?>
<?php endforeach; ?>
</section>