(hook_prefix)tax_class filter-hookWC 1.0

Usage

add_filter( '(hook_prefix)tax_class', 'wp_kama_hook_prefixtax_class_filter', 10, 2 );

/**
 * Function for `(hook_prefix)tax_class` filter-hook.
 * 
 * @param  $value 
 * @param  $that  
 *
 * @return 
 */
function wp_kama_hook_prefixtax_class_filter( $value, $that ){

	// filter...
	return $value;
}
$value
-
$that
-

Where the hook is called

WC_Product_Variation::get_tax_class()
(hook_prefix)tax_class
woocommerce/includes/class-wc-product-variation.php 305
$value = apply_filters( $this->get_hook_prefix() . 'tax_class', $value, $this );

Where the hook is used in WooCommerce

Usage not found.