Files
profile/author-news.php
Andrey Kuvshinov 8fc8cbae32 add files
2025-07-09 21:21:17 +03:00

7 lines
579 B
PHP

<?php foreach (get_coauthors() as $author ): ?>
<a data-author="<?= $author->user_nicename; ?>" class="publication__author" itemprop="author" itemscope itemtype="https://schema.org/Person" href="<?php echo get_author_posts_url( $author->ID, $author->user_nicename ); ?>" itemprop="url">
<?php echo $author->display_name; ?>
<meta itemprop="name" content="<?php echo htmlspecialchars($author->display_name); ?>" />
<link itemprop="url" href="<?php echo get_author_posts_url( $author->ID, $author->user_nicename ); ?>" />
</a>
<?php endforeach; ?>