carhop__carhop-theme__DEV/template-parts/authors/authors-list.php
Antoine M e721d9033d
All checks were successful
continuous-integration/drone/push Build is passing
REMOVING TEST FIX
2026-02-25 16:42:09 +01:00

20 lines
456 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>