woocommerce_product_csv_importer_steps
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
woocommerce_product_csv_importer_steps
woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php 196
$this->steps = apply_filters( 'woocommerce_product_csv_importer_steps', $default_steps );