WC_Abstract_Legacy_Product::has_default_attributes
Deprecated since 3.0.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.
Check if variable product has default attributes set.
Method of the class: WC_Abstract_Legacy_Product{}
No Hooks.
Returns
true|false.
Usage
$WC_Abstract_Legacy_Product = new WC_Abstract_Legacy_Product(); $WC_Abstract_Legacy_Product->has_default_attributes();
Changelog
| Deprecated since | 3.0.0 |
WC_Abstract_Legacy_Product::has_default_attributes() WC Abstract Legacy Product::has default attributes code WC 10.5.0
public function has_default_attributes() {
wc_deprecated_function( 'WC_Product_Variable::has_default_attributes', '3.0', 'a check against WC_Product::get_default_attributes directly' );
if ( ! $this->get_default_attributes() ) {
return true;
}
return false;
}