WC_Product_Attribute::get_name()publicWC 1.0

Get name.

Method of the class: WC_Product_Attribute{}

No Hooks.

Return

String.

Usage

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

WC_Product_Attribute::get_name() code WC 8.7.0

public function get_name() {
	return $this->data['name'];
}