たとえば、Wordpress の単一投稿の作成者ボックスに次のようなものがあります。
$tab = str_repeat("\t", !empty($depth) ? $depth : 0);
if (is_single()) {
echo
"$tab\t\t<p>" . get_the_author_meta('description') . "</p>\n";
次に、そのようなコードを作成して作成者ページで動作させたいのですが、次のコードがあります。
if (is_author()) {
// Get author data
if(get_query_var('author_name')) :
$curauth = get_user_by('slug', get_query_var('author_name'));
else :
$curauth = get_userdata(get_query_var('author'));
endif;
echo "...(here i need help for that line of code)" <?php echo $curauth->description; ?> ;
私の英語ですみません!