简体   繁体   中英

Get value of contact form 7 radio button

favorite I have following radio buttons in contact form 7 and a few text fields and hidden fields.

[radio radio id:radio label_first "3" "6" "9" "12"]

Following are a few example lines of code in functions.php. I am able to get all the other values eg text fields and hidden fields but not radio buttons.

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']; 
}

Is there a way to get the value of selected radio button?

好的,这样我就可以通过页面上的javascript获取单选按钮的值,并将其值分配给表单中的隐藏字段。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM