(hook_prefix)sku filter-hookWC 1.0

Usage

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
-

Where the hook is called

WC_Product_Variation::get_sku()
(hook_prefix)sku
woocommerce/includes/class-wc-product-variation.php 217
$value = apply_filters( $this->get_hook_prefix() . 'sku', $this->parent_data['sku'], $this );

Where the hook is used in WooCommerce

Usage not found.