如果您使用的是联合作者Plus插件。默认情况下,它将显示文章的原始作者。
您需要使用负责显示文章作者姓名的代码编辑主题文件。这可能是single.php, content.php,
或主题中的模板标记functions.php
文件
the_author_posts_link()
您需要将其替换为以下代码段。
if ( function_exists( \'coauthors_posts_links\' ) ) {
coauthors_posts_links();
} else {
the_author_posts_link();
}
Reference
您可以使用以下代码获取共同作者。
<?php $coauthors = get_coauthors(); ?>
<?php foreach( $coauthors as $coauthor ): ?>
<center><div class="authbio">
<img src="<?php bloginfo(\'template_url\'); ?>/images/<?php echo $coauthor->user_firstname; ?>.jpg" alt="" class="alignleft"/>
<?php $userdata = get_userdata( $coauthor->ID ); ?>
<?php if ( $userdata->user_description ) echo $userdata->user_description; ?>
</div></center>
<?php endforeach; ?>