在您的评论回调中,您可以在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 );