woocommerce_product_importer_formatting_callbacks хук-фильтрWC 1.0

Использование

add_filter( 'woocommerce_product_importer_formatting_callbacks', 'wp_kama_woocommerce_product_importer_formatting_callbacks_filter', 10, 2 );

/**
 * Function for `woocommerce_product_importer_formatting_callbacks` filter-hook.
 * 
 * @param  $callbacks 
 * @param  $that      
 *
 * @return 
 */
function wp_kama_woocommerce_product_importer_formatting_callbacks_filter( $callbacks, $that ){

	// filter...
	return $callbacks;
}
$callbacks
-
$that
-

Где вызывается хук

WC_Product_CSV_Importer::get_formatting_callback()
woocommerce_product_importer_formatting_callbacks
woocommerce/includes/import/class-wc-product-csv-importer.php 823
return apply_filters( 'woocommerce_product_importer_formatting_callbacks', $callbacks, $this );

Где используется хук в WooCommerce

Использование не найдено.