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

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

add_filter( 'woocommerce_product_csv_importer_steps', 'wp_kama_woocommerce_product_csv_importer_steps_filter' );

/**
 * Function for `woocommerce_product_csv_importer_steps` filter-hook.
 * 
 * @param  $default_steps 
 *
 * @return 
 */
function wp_kama_woocommerce_product_csv_importer_steps_filter( $default_steps ){

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

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

WC_Product_CSV_Importer_Controller::__construct()
woocommerce_product_csv_importer_steps
woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php 148
$this->steps = apply_filters( 'woocommerce_product_csv_importer_steps', $default_steps );

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

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