5 lines
233 B
PHP
5 lines
233 B
PHP
|
|
<?php foreach (get_coauthors() as $author ): ?>
|
||
|
|
<a class="blog__frame" href="<?php echo get_author_posts_url( $author->ID, $author->user_nicename ); ?>">
|
||
|
|
<?php echo coauthors_get_avatar($author, 158); ?>
|
||
|
|
</a>
|
||
|
|
<?php endforeach; ?>
|