woocommerce_product_csv_importer_steps
Использование
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
- -
Где вызывается хук
woocommerce_product_csv_importer_steps
woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php 172
$this->steps = apply_filters( 'woocommerce_product_csv_importer_steps', $default_steps );