16 lines
324 B
PHP
16 lines
324 B
PHP
<?php
|
|
|
|
|
|
?>
|
|
|
|
<div id="article-authors" class="article-authors">
|
|
|
|
<?php get_template_part('template-parts/authors/authors-list', null, array(
|
|
'postId' => get_the_ID()
|
|
)); ?>
|
|
|
|
<?php get_template_part('template-parts/authors/authors-last-publications', null, array(
|
|
'postId' => get_the_ID()
|
|
)); ?>
|
|
|
|
</div>
|