WC_Product_Variable::get_variation_attributes()
Return an array of attributes used for variations, as well as their possible values.
This is lazy loaded as it's not used often and does require several queries.
Метод класса: WC_Product_Variable{}
Хуков нет.
Возвращает
Массив
. Attributes and their available values
Использование
$WC_Product_Variable = new WC_Product_Variable(); $WC_Product_Variable->get_variation_attributes();
Код WC_Product_Variable::get_variation_attributes() WC Product Variable::get variation attributes WC 9.8.2
public function get_variation_attributes() { if ( null === $this->variation_attributes ) { $this->variation_attributes = $this->data_store->read_variation_attributes( $this ); } return $this->variation_attributes; }