0

我目前正在完成一个客户网站的工作,我希望作者简介显示在单个帖子的底部。唯一的事情是,我只希望这部分显示在填写用户简历的前端。我非常接近让它工作,但由于某种原因,下面的代码没有显示在当生物部分中有副本时的前端。

<?php   
$author_bio     = the_author_meta('description'); 
if (!empty($author_bio)) :
?>  

<h3><?php _e('About', 'roots') ;?> <a href="<?php echo get_author_posts_url(get_the_author_meta('ID')); ?>"><?php the_author() ;?></a>:</h3>
<?php echo '<p>', $author_bio, '</p>'; ?>
<?php endif; ?>

任何帮助将不胜感激。谢谢!

4

1 回答 1

1

你需要更换

$author_bio     = the_author_meta('description');

$author_bio     = get_the_author_meta('description'); 

函数 the_author_meta 回显它的输出而不是返回它。

于 2013-07-16T19:40:56.500 回答