(hook_prefix)sku
Использование
add_filter( '(hook_prefix)sku', 'wp_kama_hook_prefixsku_filter', 10, 2 ); /** * Function for `(hook_prefix)sku` filter-hook. * * @param $parent_data_sku * @param $that * * @return */ function wp_kama_hook_prefixsku_filter( $parent_data_sku, $that ){ // filter... return $parent_data_sku; }
- $parent_data_sku
- -
- $that
- -
Где вызывается хук
(hook_prefix)sku
woocommerce/includes/class-wc-product-variation.php 218
$value = apply_filters( $this->get_hook_prefix() . 'sku', $this->parent_data['sku'], $this );