wc_has_custom_attribute_types()WC 3.3.2

Check if there are custom attribute types.

Хуков нет.

Возвращает

true|false. True if there are custom types, otherwise false.

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

wc_has_custom_attribute_types();

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

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

Код wc_has_custom_attribute_types() WC 8.7.0

function wc_has_custom_attribute_types() {
	$types = wc_get_attribute_types();

	return 1 < count( $types ) || ! array_key_exists( 'select', $types );
}