例如,我在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; ?> ;
请原谅我的英文!
答案 0 :(得分:0)
这应该让你前进:
<?php
if ( is_author() ) {
$curauth = (isset($_GET['author_name'])) ? get_user_by('slug', $author_name) : get_userdata(intval($author));
if( $curauth != false ) {
echo $curauth->description;
} else {
echo 'Could not get WP_User object';
}
}
?>
或页面上的某个地方
<p>Author name:<?php echo $curauth->nickname; ?></p>
<p>Author description: <?php echo $curauth->description; ?></p>
在尝试回显任何数据之前,请务必检查$curauth
是否已填充用户数据(WP_User
对象)。