wc_implode_text_attributes()WC 3.0.0

Implode an array of attributes using WC_DELIMITER.

Хуков нет.

Возвращает

Строку.

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

wc_implode_text_attributes( $attributes );
$attributes(массив) (обязательный)
Attributes list.

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

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

Код wc_implode_text_attributes() WC 8.7.0

function wc_implode_text_attributes( $attributes ) {
	return implode( ' ' . WC_DELIMITER . ' ', $attributes );
}