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.

Method of the class: WC_Product_CSV_Importer{}

No Hooks.

Return

String.

Usage

$WC_Product_CSV_Importer = new WC_Product_CSV_Importer();
$WC_Product_CSV_Importer->parse_skip_field( $value );
$value(string) (required)
Field value.

WC_Product_CSV_Importer::parse_skip_field() code WC 8.7.0

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