19 lines
402 B
PHP
19 lines
402 B
PHP
<?php
|
|
$revueID = $args['revueID'];
|
|
$authors = getRevueAuthors($revueID);
|
|
|
|
|
|
?>
|
|
|
|
<section class="revue-authors-list">
|
|
<h3 class="revue-authors-list__title">Auteur·e·s de la revue</h3>
|
|
<?php foreach ($authors as $authorID) : ?>
|
|
<?php get_template_part(
|
|
'template-parts/authors/card-author',
|
|
null,
|
|
array(
|
|
'ID' => $authorID,
|
|
)
|
|
); ?>
|
|
<?php endforeach; ?>
|
|
</section>
|