WC_Product_Importer::get_parsed_data()publicWC 1.0

Get parsed data.

Method of the class: WC_Product_Importer{}

Return

Array.

Usage

$WC_Product_Importer = new WC_Product_Importer();
$WC_Product_Importer->get_parsed_data();

WC_Product_Importer::get_parsed_data() code WC 8.7.0

public function get_parsed_data() {
	/**
	 * Filter product importer parsed data.
	 *
	 * @param array $parsed_data Parsed data.
	 * @param WC_Product_Importer $importer Importer instance.
	 */
	return apply_filters( 'woocommerce_product_importer_parsed_data', $this->parsed_data, $this );
}