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

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

add_filter( 'woocommerce_product_default_attributes', 'wp_kama_woocommerce_product_default_attributes_filter', 10, 2 );

/**
 * Function for `woocommerce_product_default_attributes` filter-hook.
 * 
 * @param  $default_attributes 
 * @param  $that               
 *
 * @return 
 */
function wp_kama_woocommerce_product_default_attributes_filter( $default_attributes, $that ){

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

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

WC_Abstract_Legacy_Product::get_variation_default_attributes()
woocommerce_product_default_attributes
woocommerce/includes/legacy/abstract-wc-legacy-product.php 165
return apply_filters( 'woocommerce_product_default_attributes', $this->get_default_attributes(), $this );

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

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