代码源自露兜博客,加入functions.php

// 评论添加@ 
add_filter( 'get_comment_text' , 'comment_add_at', 20, 2); // 添加过滤器,加入以下值
function comment_add_at( $get_comment_text, $comment = '') {
  if( $comment->comment_parent > 0) {
    $get_comment_text = '<a href="#comment-' . $comment->comment_parent . '">@'.get_comment_author( $comment->comment_parent ) . '</a> <br />' . $get_comment_text;
  }
  return $get_comment_text; // 返回添加@的函数,名称不能自定义
}

在评论列表回调函数中,评论主体内容调用输出get_comment_text();函数即可,
但若要显示评论表情就必须用convert_smilies(get_comment_text());包裹住,否则表情不会在评论中显示出来。