我正在尝试实现Co-Authors Plus插件。它说您需要在主题中更改一些 PHP。它概述了此链接上的更改。
我相信我已经找到了我需要在主题中更改它的地方。在一个名为“post-author-info.php”的文件中。
这是它的样子:
<?php
/**
* Post Author Info
*
* @package WP Journal
* @subpackage Include
*/
?>
<div id="authorinfo" class="columns alpha omega marT30 marB20">
<a href="<?php the_author_meta('url'); ?>"><?php echo get_avatar( get_the_author_meta('email'), '80' ); ?></a>
<h5 class="marB10"><?php _e('By', 'contempo'); ?>: <a href="<?php the_author_meta('url'); ?>"><?php the_author(); ?></a></h5>
<p><?php the_author_meta('description'); ?></p>
<div class="clear"></div>
</div>
只是添加这一行<?php if ( function_exists( 'coauthors' ) ) { coauthors(); } else { the_author(); } ?>
似乎给了我想要的东西。“Admin”和“Andrew Gable”都会显示。
这是应用更改时的屏幕截图。
我不确定如何让它正确链接,以及如何处理照片和多个生物。
谢谢