How to export posts with featured image
There’s not an easy way to modify the export query that runs under /wp-admin/export.php. It doesn’t use the WP_Query or the get_posts() wrapper, instead it currently uses this query: $post_ids = $wpdb->get_col( “SELECT ID FROM {$wpdb->posts} $join WHERE $where” ); without explicit filters to it, though it’s possible to filter few settings through the export_args … Read more