wc_get_attribute_types()
Get attribute types.
Хуки из функции
Возвращает
Массив.
Использование
wc_get_attribute_types();
Список изменений
| С версии 2.4.0 | Введена. |
Код wc_get_attribute_types() wc get attribute types WC 10.3.5
function wc_get_attribute_types() {
return (array) apply_filters(
'product_attributes_type_selector',
array(
'select' => __( 'Select', 'woocommerce' ),
)
);
}