WC_Abstract_Legacy_Product::has_default_attributes()publicWC 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 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() code WC 9.8.5

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;
}