WC_Product_CSV_Importer::set_mapped_keys()
Set file mapped keys.
Description Description
Source Source
File: includes/import/class-wc-product-csv-importer.php
protected function set_mapped_keys() {
$mapping = $this->params['mapping'];
foreach ( $this->raw_keys as $key ) {
$this->mapped_keys[] = isset( $mapping[ $key ] ) ? $mapping[ $key ] : $key;
}
}