23 lines
400 B
PHP
23 lines
400 B
PHP
<!--[post/cell-author]-->
|
|
|
|
<?php
|
|
|
|
$authors = get_coauthors();
|
|
|
|
?>
|
|
|
|
<div class="article__detail">
|
|
|
|
<?php foreach ( $authors as $author ): ?>
|
|
|
|
<a class="article__author" href="<?= get_author_posts_url( $author->ID, $author->user_nicename ); ?>">
|
|
|
|
<?= $author->display_name; ?>
|
|
|
|
|
|
</a>
|
|
|
|
<?php endforeach; ?>
|
|
</div>
|
|
|
|
<!--[/post/cell-author]-->
|