我有一个包含这样字段的表单。
<form action="http://localhost/brands/?page_id=14" method="get">
<p>
<label>*Graphic Size:</label>
<select name="size">
<option>6X6</option>
</select>
</p>
<p>
<label>*Frame Color:</label>
<select name="color">
<option>Silver</option>
<option>Gold</option>
</select>
</p>
<p>
<label>Quantity:</label>
<input name="quantity" class="quantity" class="number" type="number" value="10" />
</p>
<p style="width:100%;">
<a href="#"><span style="background:#447838; padding:5px 20px;">Get Quote</span></a>
</p>
</form>
问题: 我想用联系表格7发送这些值。
$_GET['size'];
$_GET['color'];
$_GET['quantity'];
联系表格7有这些字段。
From: [your-name] <[your-email]>
Subject: [your-subject]
Subject: [Company]
Subject: [Phone]
答案 0 :(得分:3)
我不知道这两种关系是什么,但你不应该在CF7表单对象中对这些字段进行硬编码。而是正确添加它们,并从wpcf7_before_send_mail
文件中挂钩functions.php
方法。
function pre_process_fields(){
$size = $WPCF7_ContactForm->posted_data['size'];
$color = $WPCF7_ContactForm->posted_data['color'];
$quantity = $WPCF7_ContactForm->posted_data['quantity'];
//do something with them?
}
add_action('wpcf7_before_send_mail', 'pre_process_fields');
希望这能让你有所了解。