woocommerce_product_import_image_separator
Usage
add_filter( 'woocommerce_product_import_image_separator', 'wp_kama_woocommerce_product_import_image_separator_filter' );
/**
* Function for `woocommerce_product_import_image_separator` filter-hook.
*
* @param $string
*
* @return
*/
function wp_kama_woocommerce_product_import_image_separator_filter( $string ){
// filter...
return $string;
}
- $string
- -
Where the hook is called
woocommerce_product_import_image_separator
woocommerce/includes/import/class-wc-product-csv-importer.php 573
$separator = apply_filters( 'woocommerce_product_import_image_separator', ',' );