WC_Product_CSV_Importer::parse_skip_field
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.
Returns
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() WC Product CSV Importer::parse skip field code WC 10.5.0
public function parse_skip_field( $value ) {
return $value;
}