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;
		}
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.