wc_implode_text_attributes()
Implode an array of attributes using WC_DELIMITER.
Хуков нет.
Возвращает
Строку.
Использование
wc_implode_text_attributes( $attributes );
- $attributes(массив) (обязательный)
- Attributes list.
Список изменений
| С версии 3.0.0 | Введена. |
Код wc_implode_text_attributes() wc implode text attributes WC 10.4.2
function wc_implode_text_attributes( $attributes ) {
return implode( ' ' . WC_DELIMITER . ' ', $attributes );
}