我刚刚从 Theme High 购买了 WooCommerce 插件 Checkout Field Editor。我需要为字段创建自定义显示规则条件。他们提供过滤器钩子:
apply_filters( 'thwcfe_show_field', $show, $field_name );
我已经尝试过以下代码,但它不起作用。有人可以帮忙吗?
function display( $field_name='test' ) {
$show =true;
return $show;
}
add_filter('thwcfe_show_field', 'display');
true / false 选项有效,但我无法将其特定于$field_name = 'test'.