6 lines
328 B
PHP
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; ?>
|