add files

This commit is contained in:
Andrey Kuvshinov
2025-07-09 21:21:17 +03:00
commit 8fc8cbae32
596 changed files with 207566 additions and 0 deletions

7
author-single.php Normal file
View File

@@ -0,0 +1,7 @@
<?php foreach (get_coauthors() as $author ): ?>
<a class="publication__author" href="<?php echo get_author_posts_url( $author->ID, $author->user_nicename ); ?>" itemprop="author" itemscope itemtype="https://schema.org/Person">
<?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; ?>