WC_Product_CSV_Exporter::filter_description_field()
Filter description field for export. Convert newlines to '\n'.
Метод класса: WC_Product_CSV_Exporter{}
Хуков нет.
Возвращает
Строку
.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->filter_description_field( $description );
- $description(строка) (обязательный)
- Product description text to filter.
Список изменений
С версии 3.5.4 | Введена. |
Код WC_Product_CSV_Exporter::filter_description_field() WC Product CSV Exporter::filter description field WC 9.2.3
protected function filter_description_field( $description ) { $description = str_replace( '\n', "\\\\n", $description ); $description = str_replace( "\n", '\n', $description ); return $description; }