如何从联系表 7 (WordPress) 对象中获取特定的 属性?
How to get specific property from contact form 7 (WordPress) object?
我是编程新手,我想提取并保存使用我的联系表 7 的人的电子邮件地址。
我可以使用
提取联系表单 ID
function action_wpcf7_mail_failed( $contact_form ) {
$aet_formid = $contact_form->id; // this returns the id of the contact form
}
但是当我使用
$aet_form_email = $contact_form->post_author_email; // this returns null
我可以知道我应该使用哪个 属性 来获取用户在表单中输入的电子邮件吗?
非常感谢您提供的任何帮助。
请将此添加到您的函数中:
$submission = WPCF7_Submission::get_instance();
$posted_data = $submission->get_posted_data();
$posted_data
变量包含您需要的所有值。
我是编程新手,我想提取并保存使用我的联系表 7 的人的电子邮件地址。
我可以使用
提取联系表单 IDfunction action_wpcf7_mail_failed( $contact_form ) {
$aet_formid = $contact_form->id; // this returns the id of the contact form
}
但是当我使用
$aet_form_email = $contact_form->post_author_email; // this returns null
我可以知道我应该使用哪个 属性 来获取用户在表单中输入的电子邮件吗?
非常感谢您提供的任何帮助。
请将此添加到您的函数中:
$submission = WPCF7_Submission::get_instance();
$posted_data = $submission->get_posted_data();
$posted_data
变量包含您需要的所有值。