WC_Product_Importer::explode_values_formatter( string $value )

Remove formatting and trim each value.


Description Description


Parameters Parameters

$value

(Required) Value to format.


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/import/abstract-wc-product-importer.php

	protected function explode_values_formatter( $value ) {
		return trim( str_replace( '::separator::', ',', $value ) );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.2.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.