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

6 lines
328 B
PHP

<?php if(get_post_type() !== "anew" && get_post_type() !== "yellow"): ?>
<?php foreach (get_coauthors() as $author ): ?>
<a class="publication__author" href="<?php echo get_author_posts_url( $author->ID, $author->user_nicename ); ?>"><?php echo $author->display_name; ?></a>
<?php endforeach; ?>
<?php endif; ?>