woocommerce_product_import_image_separator

woocommerce_product_import_image_separator

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.7.1

apply_filters('woocommerce_product_import_image_separator') is found 1 times:

  • /includes/import/class-wc-product-csv-importer.php line 561
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
        return array();
    }
     
    $images    = array();
    $separator = apply_filters( 'woocommerce_product_import_image_separator', ',' );
     
    foreach ( $this->explode_values( $value, $separator ) as $image ) {
        if ( stristr( $image, '://' ) ) {
            $images[] = esc_url_raw( $image );
        } else {
            $images[] = sanitize_file_name( $image );