web-dev-qa-db-ja.com

WordPressで投稿者名を取得する方法は?

WordPressでは、author_idを使用して投稿を作成した著者の名前を取得する必要があります。
author_nameを見つけるにはどうすればよいですか?

6
Rakhi Prajapati

get_the_author_meta() を使用して、作成者データを取得できます。

echo get_the_author_meta('display_name', $author_id);

お役に立てれば!

20
Raunak Gupta

これは魅力のように機能するはずです

<?php echo get_the_author(); ?>

詳細については。 https://codex.wordpress.org/Function_Reference/get_the_author

3
Amit

Single.phpまたは著者名にしたい関連ページで以下のコードを使用します

<?php get_the_author_meta( 'display_name', $author_id ); ?>
3
Nikhil Chopde

このコードをsingle-post.phpに追加します

<?php echo get_the_author(); ?>

これがうまくいくことを願っています!!

2
Jawwad Rizwan