WC_Product_Variation_Data_Store_CPT::generate_attribute_summary()
Generates attribute summary for the variation.
Attribute summary contains comma-delimited 'attribute_name: attribute_value' pairs for all attributes.
Метод класса: WC_Product_Variation_Data_Store_CPT{}
Хуков нет.
Возвращает
Строку
.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->generate_attribute_summary( $product );
- $product(WC_Product_Variation) (обязательный)
- Product variation to generate the attribute summary for.
Список изменений
С версии 3.6.0 | Введена. |
Код WC_Product_Variation_Data_Store_CPT::generate_attribute_summary() WC Product Variation Data Store CPT::generate attribute summary WC 9.4.2
protected function generate_attribute_summary( $product ) { return wc_get_formatted_variation( $product, true, true ); }