woocommerce_product_csv_importer_steps filter-hookWC 1.0

Usage

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
-

Where the hook is called

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 );

Where the hook is used in WooCommerce

Usage not found.