woocommerce_is_attribute_in_product_name
Usage
add_filter( 'woocommerce_is_attribute_in_product_name', 'wp_kama_woocommerce_is_attribute_in_product_name_filter', 10, 3 );
/**
* Function for `woocommerce_is_attribute_in_product_name` filter-hook.
*
* @param $is_in_name
* @param $attribute
* @param $name
*
* @return
*/
function wp_kama_woocommerce_is_attribute_in_product_name_filter( $is_in_name, $attribute, $name ){
// filter...
return $is_in_name;
}
- $is_in_name
- -
- $attribute
- -
- $name
- -
Where the hook is called
woocommerce_is_attribute_in_product_name
woocommerce/includes/wc-attribute-functions.php 408
return apply_filters( 'woocommerce_is_attribute_in_product_name', $is_in_name, $attribute, $name );