Co-Authors Plus Pluginを実装しようとしています。テーマの一部の 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」の両方が表示されます。
変更が適用されたときのスクリーンショットを次に示します。
正しくリンクする方法と、写真と複数の略歴を処理する方法がわかりません。
ありがとう