例如,我在 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; ?> ;
原谅我的英语!