Parent comment's author name

时间:2016-02-25 作者:N00b

enter image description here

当我找不到WP功能来显示被回复人的姓名时,我真的很惊讶。。有没有办法解决这个问题?How do I get the name of parent comment\'s author?

1 个回复
最合适的回答,由SO网友:birgire 整理而成

在您的评论回调中,您可以在comment_parent 当前属性$comment 对象

然后我们可以使用comment_author() 用于显示注释作者姓名的函数:

// Display the parent comment author\'s name:
if( $comment->comment_parent )
    comment_author( $comment->comment_parent );
以及comment_author_link() 用于显示注释作者链接的函数:

// Display the parent comment author\'s link:
if( $comment->comment_parent )
    comment_author_link( $comment->comment_parent );