wc_get_attribute_types()WC 2.4.0

Get attribute types.

Хуки из функции

Возвращает

Массив.

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

wc_get_attribute_types();

Список изменений

С версии 2.4.0 Введена.

Код wc_get_attribute_types() WC 8.7.0

function wc_get_attribute_types() {
	return (array) apply_filters(
		'product_attributes_type_selector',
		array(
			'select' => __( 'Select', 'woocommerce' ),
		)
	);
}