woocommerce_product_template_csv_file_path
Использование
add_filter( 'woocommerce_product_template_csv_file_path', 'wp_kama_woocommerce_product_template_csv_file_path_filter', 10, 2 );
/**
* Function for `woocommerce_product_template_csv_file_path` filter-hook.
*
* @param $template_path
* @param $template_name
*
* @return
*/
function wp_kama_woocommerce_product_template_csv_file_path_filter( $template_path, $template_name ){
// filter...
return $template_path;
}
- $template_path
- -
- $template_name
- -
Где вызывается хук
woocommerce_product_template_csv_file_path
woocommerce/src/Admin/API/OnboardingTasks.php 365
$template_path = apply_filters( 'woocommerce_product_template_csv_file_path', $template_path, $template_name );