WC_Product_Attribute::is_taxonomy()publicWC 1.0

Return if this attribute is a taxonomy.

Method of the class: WC_Product_Attribute{}

No Hooks.

Return

true|false.

Usage

$WC_Product_Attribute = new WC_Product_Attribute();
$WC_Product_Attribute->is_taxonomy();

WC_Product_Attribute::is_taxonomy() code WC 8.7.0

public function is_taxonomy() {
	return 0 < $this->get_id();
}