WC_Product_Importer::explode_values_formatter( string $value )
Remove formatting and trim each value.
Description Description
Parameters Parameters
- $value
-
(Required) Value to format.
Return Return
(string)
Source Source
File: includes/import/abstract-wc-product-importer.php
protected function explode_values_formatter( $value ) { return trim( str_replace( '::separator::', ',', $value ) ); }
Changelog Changelog
Version | Description |
---|---|
3.2.0 | Introduced. |