woocommerce_product_default_attributes filter-hook . WC 1.0
Deprecated from version 3.0.0. It is no longer supported and can be removed in future releases. It is recommended to replace this hook with the same one.╳
Deprecated: 3.0.0
If set, get the default attributes for a variable product.
Usage
add_filter( 'woocommerce_product_default_attributes', 'filter_function_name_9494', 10, 2 ); function filter_function_name_9494( $default_attributes, $that ){ // filter... return $default_attributes; }
- $default_attributes
- -
- $that
- -
Changelog
Deprecated | 3.0.0 |
Where the hook is called
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 );