woocommerce_attribute_label хук-фильтрWC 1.0

Использование

add_filter( 'woocommerce_attribute_label', 'wp_kama_woocommerce_attribute_label_filter', 10, 3 );

/**
 * Function for `woocommerce_attribute_label` filter-hook.
 * 
 * @param  $label   
 * @param  $name    
 * @param  $product 
 *
 * @return 
 */
function wp_kama_woocommerce_attribute_label_filter( $label, $name, $product ){

	// filter...
	return $label;
}
$label
-
$name
-
$product
-

Где вызывается хук

wc_attribute_label()
woocommerce_attribute_label
woocommerce/includes/wc-attribute-functions.php 211
return apply_filters( 'woocommerce_attribute_label', $label, $name, $product );

Где используется хук в WooCommerce

woocommerce/includes/wc-core-functions.php 44
add_filter( 'woocommerce_attribute_label', 'wp_kses_post', 100 );
woocommerce/src/Blocks/Shipping/PickupLocation.php 45
add_filter( 'woocommerce_attribute_label', array( $this, 'translate_meta_data' ), 10, 3 );