有人知道为什么这个“comment\\u post”挂钩似乎不起作用吗!?
。。。
发布评论时,不会触发该功能。。。完全
钩子起作用了。尝试以下方法,效果很好:
add_action( \'comment_post\', \'test_notify\' );
function test_notify($args , $args2) {
echo \'It works!\';
die;
}
如下所示:
add_action( \'comment_post\', \'test_notify\' );
function test_notify($args , $args2) {
echo \'It works!\';
header("Location: http://www.google.com");
die;
}
事实上,这也很有效,但您可能会得到404:
add_action( \'comment_post\', \'test_notify\' );
function test_notify($args , $args2) {
echo \'It works!\';
header("Location: /blog?thisworked=true");
die;
}
您想使用
site_url()
或
home_url()
可能:
add_action( \'comment_post\', \'test_notify\' );
function test_notify($args , $args2) {
echo \'It works!\';
header(\'Location: \'.home_url(\'/blog?thisworked=true\'));
die;
}
如果这些都不起作用,就会有什么干扰,我不知道该怎么猜。