woocommerce_is_attribute_in_product_name filter-hookWC 1.0

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

wc_is_attribute_in_product_name()
woocommerce_is_attribute_in_product_name
woocommerce/includes/wc-attribute-functions.php 406
return apply_filters( 'woocommerce_is_attribute_in_product_name', $is_in_name, $attribute, $name );

Where the hook is used in WooCommerce

Usage not found.