現在の著者アーカイブの著者名を取得しようとしています:
if (is_author()) return AUTHOR_NAME;
しかし、どうすれば現在の著者名を取得できますか?
現在の著者アーカイブの著者名を取得しようとしています:
if (is_author()) return AUTHOR_NAME;
しかし、どうすれば現在の著者名を取得できますか?
global $wp_query;
$author = get_user_by('slug', $wp_query->query_vars['author_name']);
これにより、現在のページ/投稿の作成者が表示されます。
<?php echo get_the_author() ; ?>
rewind_posts()
トリックは必要ありません:
$qo = get_queried_object();
$author = $qo->data->display_name;