WC_Abstract_Legacy_Product::get_variation_default_attributes()
Deprecated from version 3.0.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.
If set, get the default attributes for a variable product.
Method of the class: WC_Abstract_Legacy_Product{}
Hooks from the method
Return
Array
.
Usage
$WC_Abstract_Legacy_Product = new WC_Abstract_Legacy_Product(); $WC_Abstract_Legacy_Product->get_variation_default_attributes();
Changelog
Deprecated since | 3.0.0 |
WC_Abstract_Legacy_Product::get_variation_default_attributes() WC Abstract Legacy Product::get variation default attributes code WC 7.7.0
public function get_variation_default_attributes() { wc_deprecated_function( 'WC_Product_Variable::get_variation_default_attributes', '3.0', 'WC_Product::get_default_attributes' ); return apply_filters( 'woocommerce_product_default_attributes', $this->get_default_attributes(), $this ); }