在用户发布评论后,我一直试图将其引导到特定页面,但这对我来说并不幸运。
这是我的代码块
我的第一次尝试:
add_action(\'wp_insert_comment\', array($this, \'redirectAfterCommented\'));
public function redirectAfterCommented() {
//some bussines logics
wp_redirect(\'http://example.com/sample-jpage\');
}
此外,我还使用以下代码尝试了另一个
add_action(\'comment_post\', array($this, \'redirectAfterCommented \'), 10, 2);
public function redirectAfterCommented () {
// some business logic
wp_redirect(\'https://example.com/sample-page\');
}
你钓错地方了吗?如果是这样的话,我应该在哪里引导评论员?