WC_Product_Attribute::get_name()publicWC 1.0

Get name.

Метод класса: WC_Product_Attribute{}

Хуков нет.

Возвращает

Строку.

Использование

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

Код WC_Product_Attribute::get_name() WC 8.7.0

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