DropDown自定义字段使用If Else显示选项

时间:2013-12-30 15:54:25

标签: php wordpress advanced-custom-fields

大家好,我有麻烦了!

我想问你如何为下面的每个选项制作1个条件代码 function field_cliente:

function field_cliente( $fields) {
    $fields['billing']['billing_cliente'] = array (
        'label' => __('Tipo di Cliente', 'woocommerce'),
        'id' => '_select', 
        'type' => 'select',
        'options' => array (
            'default' => __( 'Seleziona', 'woocommerce' ),
            'one' => __( 'Privato', 'woocommerce' ),
            'two' => __( 'Azienda', 'woocommerce' ),
            'three' => __( 'Impresa Individuale', 'woocommerce' )
        )
    );

    return $fields;
}

例如:

If "One" {
    add_filter(' ..');
    etc...
}

if "Two" {
    add_filter(' ..');
}

我需要知道这样做的方法,因为我正试图通过网页结帐时客户选择的每个条件进行过滤显示

0 个答案:

没有答案