WordPressでは、author_id
を使用して投稿を作成した著者の名前を取得する必要があります。author_name
を見つけるにはどうすればよいですか?
get_the_author_meta()
を使用して、作成者データを取得できます。
echo get_the_author_meta('display_name', $author_id);
お役に立てれば!
これは魅力のように機能するはずです
<?php echo get_the_author(); ?>
詳細については。 https://codex.wordpress.org/Function_Reference/get_the_author
Single.phpまたは著者名にしたい関連ページで以下のコードを使用します
<?php get_the_author_meta( 'display_name', $author_id ); ?>
このコードをsingle-post.phpに追加します
<?php echo get_the_author(); ?>
これがうまくいくことを願っています!!