woocommerce_product_import_process_item_data filter-hookWC 1.0

Usage

add_filter( 'woocommerce_product_import_process_item_data', 'wp_kama_woocommerce_product_import_process_item_data_filter' );

/**
 * Function for `woocommerce_product_import_process_item_data` filter-hook.
 * 
 * @param  $data 
 *
 * @return 
 */
function wp_kama_woocommerce_product_import_process_item_data_filter( $data ){

	// filter...
	return $data;
}
$data
-

Where the hook is called

WC_Product_Importer::process_item()
woocommerce_product_import_process_item_data
woocommerce/includes/import/abstract-wc-product-importer.php 228
$data = apply_filters( 'woocommerce_product_import_process_item_data', $data );

Where the hook is used in WooCommerce

Usage not found.