我在一个页面中应用了一个联系人表单7,并希望将值存储在后端。现在,值将发送到电子邮件id。请帮助我。谢谢
从主页上看,你似乎可以安装flamingo插件来实现这一点,wordpress.org/extend/plugins/contact-form-7。链接到flamingo wordpress.org/extend/plugins/flammingo
在发送邮件之前钩住插件。
function save_email (&$WPCF7_ContactForm) {
# write the code to get the email address
# and save it to your database
# you might want to use print_r($WPCF7_ContactForm)
# to get the values used by the form
}
add_action("wpcf7_before_send_mail", "save_email");
如果你不喜欢编写自己的东西,这个插件可能会对你有所帮助。