我在我的wordpress网站上有一个评论表单,我试图让以下事情发生:
1)点击帖子评论获取数据 2)如果必填字段设置为是,则发送电子邮件
由于某种原因,它不起作用,这是我的代码:
function preprocess_comment_handler( $commentdata ) {
mail('mail@example.com','subject','message');
if ($commentdata['signuptomailinglistcommentform'] == "Yes") {
mail('mail@example.com','subject','message');
}
//some code
//return $commentdata;
}
add_filter( 'preprocess_comment' , 'preprocess_comment_handler' );
我甚至在if函数上方添加了 mail('mail@example.com','subject','message'); ,这样它就可以在我调用挂钩的那一刻运行仍然没有:/
任何想法?