WordPress在获取回复链接时调用以下内容。
apply_filters( \'comment_reply_link\', $before . $link . $after, $args, $comment, $post );
使用自定义筛选器提供您自己的链接。我不认为有直接的方法可以改变URL,你必须自己将URL注入html字符串。
add_filter( \'comment_reply_link\', \'my_custom_callback_function\', 10, 4 );
function my_custom_callback_function($link_html, $args, $comment, $post) {
// Return an html string here
}