woocommerce_form_field_args

woocommerce_form_field_args

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_form_field_args') is found 1 times:

  • /includes/wc-template-functions.php line 3066
    3062
    3063
    3064
    3065
    3066
    3067
    3068
    3069
    3070
    3071
    3072
        'checked_value'     => '1',
    );
     
    $args = wp_parse_args( $args, $defaults );
    $args = apply_filters( 'woocommerce_form_field_args', $args, $key, $value );
     
    if ( is_string( $args['class'] ) ) {
        $args['class'] = array( $args['class'] );
    }
     
    if ( is_string( $args['label_class'] ) ) {