Files
profile/template-parts/post/cell-author.php
2025-08-27 00:00:02 +03:00

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]-->