WC_Product_CSV_Importer::parse_skip_field()publicWC 1.0

Just skip current field.

By default is applied wc_clean() to all not listed fields in self::get_formatting_callback(), use this method to skip any formatting.

Метод класса: WC_Product_CSV_Importer{}

Хуков нет.

Возвращает

Строку.

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

$WC_Product_CSV_Importer = new WC_Product_CSV_Importer();
$WC_Product_CSV_Importer->parse_skip_field( $value );
$value(строка) (обязательный)
Field value.

Код WC_Product_CSV_Importer::parse_skip_field() WC 8.7.0

public function parse_skip_field( $value ) {
	return $value;
}