1

wordpressコンタクトフォーム7でチェックボックスを検証して1つだけを選択するにはどうすればよいですか? functions.php に次のコードを書きました

function custom_cf7_required_check_filter($result, $tag) {    
    $val = $_POST['Yes']; 
    $opts = strpos($val, ",");

    if($opts != false){
        $result['reason']['Yes'] = "True";
    }else{
        $result['reason']['Yes'] = "False";
    }
    return $result;
}
add_filter('wpcf7_validate_checkbox', 'custom_cf7_required_check_filter', 10, 2);
4

1 に答える 1