使用custom callback 呈现注释内容。回调函数调用内部comment_reply_link()
无论您在哪里需要它:
comment_reply_link(
array_merge(
$args,
array (
\'add_below\' => \'comment-body\',
\'depth\' => $reply_depth,
// + 1 to offer always a reply link for a consistent UI
\'max_depth\' => $args[\'max_depth\'] + 1,
\'before\' => \'<p class="reply-line">\',
\'after\' => \'</p>\'
)
)
);