Files
profile/template-parts/post/list-item-author.php

22 lines
615 B
PHP
Raw Normal View History

2025-07-09 21:21:17 +03:00
<!--[post/list-item-author]-->
<?php
$authors = get_coauthors();
?>
<?php foreach ( $authors as $author ): ?>
<a class="publication__author" href="<?= get_author_posts_url( $author->ID, $author->user_nicename ); ?>" itemprop="author" itemscope itemtype="https://schema.org/Person">
<?= $author->display_name; ?>
<meta itemprop="name" content="<?= htmlspecialchars($author->display_name); ?>" />
<link itemprop="url" href="<?= get_author_posts_url( $author->ID, $author->user_nicename ); ?>" />
</a>
<?php endforeach; ?>
<!--[/post/list-item-author]-->