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