woocommerce_customer_taxable_address хук-фильтр . WC 1.0
Использование
add_filter( 'woocommerce_customer_taxable_address', 'filter_function_name_8454' ); function filter_function_name_8454( $array ){ // filter... return $array; }
- $array
- -
Где вызывается хук
woocommerce_customer_taxable_address
woocommerce/includes/class-wc-customer.php 211
return apply_filters( 'woocommerce_customer_taxable_address', array( $country, $state, $postcode, $city ) );