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