有没有办法在wordpress中的woocommerce上的输入字段中添加表单控件?

时间:2016-03-22 15:20:27

标签: php wordpress woocommerce

我正在尝试设置表单输入字段的样式以使其看起来更好。有谁知道如何轻松完成这项工作?

我已经好好看看在php文件中,但没有运气在哪里改变它。

谢谢!

1 个答案:

答案 0 :(得分:2)

您可以使用woocommerce_form_field_<type>过滤器来控制Woocommerce输入元素的输出。

//replace <type> with the type of input you need to update
function filter_woocommerce_form_field_<type>( $field, $key, $args, $value ) { 
    //edit or override the field here...
    return $field; 
}; 
         
add_filter('woocommerce_form_field_<type>', 'filter_woocommerce_form_field_type', 10, 4);

参考:http://hookr.io/filters/woocommerce_form_field_type/