喜爱 我在联系表格7和一些文本字段和隐藏字段中有以下单选按钮。
[radio radio id:radio label_first "3" "6" "9" "12"]
以下是functions.php中的一些示例代码行。我能够获得所有其他值,例如文本字段和隐藏字段,但不能获得单选按钮。
function wpcf7_cstm_function($contact_form) {
$title = $contact_form->title;
$submission = WPCF7_Submission::get_instance();
if ($submission) {
$posted_data = $submission->get_posted_data();
}
$txt = $posted_data['txt'];
$text2 = $posted_data['txt2'];
$radio=$posted_data['radio'];
}
有没有办法获取所选单选按钮的值?
答案 0 :(得分:0)
好吧所以我能够通过页面上的javascript获取单选按钮的值,并将其值分配给表单中的隐藏字段。