WC_Product_Importer::get_parsed_data
Get parsed data.
Method of the class: WC_Product_Importer{}
Hooks from the method
Returns
Array.
Usage
$WC_Product_Importer = new WC_Product_Importer(); $WC_Product_Importer->get_parsed_data();
WC_Product_Importer::get_parsed_data() WC Product Importer::get parsed data code WC 10.6.2
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 );
}