WC_Product_Attribute::get_taxonomy() public WC 1.0
Get taxonomy name if applicable.
{} Это метод класса: WC_Product_Attribute{}
Хуков нет.
Возвращает
Строку.
Использование
$WC_Product_Attribute = new WC_Product_Attribute(); $WC_Product_Attribute->get_taxonomy();
Код WC_Product_Attribute::get_taxonomy() WC Product Attribute::get taxonomy WC 5.0.0
public function get_taxonomy() {
return $this->is_taxonomy() ? $this->get_name() : '';
}