Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Docs

Change imported field values programmatically

How to use the iwp/template/process_field filter to alter the value of an importers template field, this example below restricts it to a specific importer using the importer id, and formats the post_date field into the mysql date format.

<?php

/**
 *  * Example code to alter the value of an Importer Templates field
 *  *
 *  * @param string $value Field value to insert
 *  * @param stirng $key Field name
 *  * @param ImportWP\Common\Model\ImporterModel $importer
 *  * @return string
 *  */
function iwpe_alter_field_value_example($value, $key, $importer)
{
    // restrict filter to specific importer (in this case id 47, change to what you need), comment out if not needed
    if ($importer->getId() !== 47) {
        return $value;
    }
    
    switch ($key) {
        case 'post_date':
            $value = date('Y-m-d H:i:s', strtotime($value));
        break;
    }
    
    return $value;
}

add_filter('iwp/template/process_field', 'iwpe_alter_field_value_example', 10, 3);