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

Export posts that have value in category

Closed

Import WP Pro Updated 2 years ago 2 Replies

Oded asked 2 years ago on July 10, 2023 at 4:59 pm

Hello,

I would like to export native posts that have category x for example, how can I do that?

Thanks

J

James replied Support Agent

2 years ago on July 11, 2023 at 8:02 am

Hi Oded,

You can add to the export query using the following filter, for example where x = 13:

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

   $query['category__in'] = 13;

    return $query;
});
OT

Oded replied

2 years ago on July 11, 2023 at 8:04 am

Thank you James