从前面的示例similar problem 和testing it 我能够回答我自己的问题。
我将此函数添加到函数中。php:
<?php
/** Plugin Name: WPSE (#167237) Redirect after comment */
add_filter(\'comment_post_redirect\', \'redirect_after_comment\');
function redirect_after_comment($location)
{
return preg_replace("/comment-page-([\\d]+)\\/#comment-([\\d]+)/", "2", $location);
}
它将url中声明评论页面和评论锚的部分替换为“2”。这可能不是最干净的解决方案,但这是我作为一个初学者设法做到的。