We are currently on vacation until 21st July 2025, ticket responses maybe be longer than normal during this period, sorry for any inconvenience.

Only Export Post wich edited in Time xy

Closed

Import WP Pro Updated 2 years ago 1 Reply

Jens asked 2 years ago on July 6, 2023 at 10:58 am

Hey, i want Export Posts from an specified Tag, wich was editet in last 3 Days.

How i can change the Settings, to Do This in Export Funktion?

J

James replied Support Agent

2 years ago on July 6, 2023 at 12:23 pm

Hi Jens,

To look for modified posts in the past 3 days, you could add the following filter:

add_filter('iwp/exporter/post_query', function ($query) {

    $query['date_query']  = [
        'relation'   => 'OR',
        [
            'column'  => 'post_date',
            'after'   => '-3 days'
        ],
        [
            'column'  => 'post_modified',
            'after'   => '-3 days'
        ]
    ];

    $query['tax_query'] = [
        ['taxonomy' => 'post_tag', 'field' => 'term_id', 'terms' => 13]
    ];

    return $query;
});

Replacing the term_id of 13 with the tag id you want to filter by

James