woocommerce_product_importer_before_set_parsed_data

ACTION woocommerce\includes\import\class-wc-product-csv-importer.php (ligne 1071) github
Map and format raw data to known fields.

Paramètres

Entrée :
$row, $mapped_keys
Sortie :
N/A

Utilisation

// Ajouter une fonction au hook action 'woocommerce_product_importer_before_set_parsed_data'
add_action('woocommerce_product_importer_before_set_parsed_data', 'ma_fonction_personnalisee', 10, 1);

function ma_fonction_personnalisee($row, $mapped_keys) {
    // Votre code ici
    error_log('Hook woocommerce_product_importer_before_set_parsed_data déclenché');
}

Actualités

Chargement des actualités...