由于注释表单是在之前生成的,因此提交的注释逻辑上不太好。
更好的选择是comment_post_redirect
过滤器:
/**
* Filter the location URI to send the commenter after posting.
*
* @since 2.0.5
*
* @param string $location The \'redirect_to\' URI sent via $_POST.
* @param object $comment Comment object.
*/
$location = apply_filters( \'comment_post_redirect\', $location, $comment );
您可以连接到它,检查用户有多少评论,并在中更改URL
$location
如有必要。