woocommerce_shipping_(id)_instance_option
Использование
add_filter( 'woocommerce_shipping_(id)_instance_option', 'wp_kama_woocommerce_shipping_id_instance_option_filter', 10, 3 ); /** * Function for `woocommerce_shipping_(id)_instance_option` filter-hook. * * @param $key ] * @param $key * @param $that * * @return */ function wp_kama_woocommerce_shipping_id_instance_option_filter( $key ], $key, $that ){ // filter... return $key ]; }
- $key ]
- -
- $key
- -
- $that
- -
Где вызывается хук
woocommerce_shipping_(id)_instance_option
woocommerce/includes/abstracts/abstract-wc-shipping-method.php 519
$instance_option = apply_filters( 'woocommerce_shipping_' . $this->id . '_instance_option', $this->instance_settings[ $key ], $key, $this );