标签: php wordpress contact-form-7
我试图将动作添加到FC1提交按钮,但我真的无法在网上的任何地方找到它的正确功能。 我发现的唯一一个叫"wpcf7_before_send_mail" 我能不能真正开始工作
"wpcf7_before_send_mail"
add_action('wpcf7_before_send_mail', 'mytheme_save_to_getresponse', 10, 1); function mytheme_save_to_getresponse($form) { echo "testing"; }
有什么建议吗?