From 505e08e2c4a9a20e1ff43d48debac0194cf4cf24 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 28 Dec 2020 15:24:37 +0000 Subject: [PATCH] Export: Add `post_modified` and `post_modified_gmt` fields to the generated WXR export file. This allows for more flexibility when determining which version of a post is the latest one, and makes it possible to implement import logic involving updating and adding revisions to existing posts or pages. Props jmdodd. Fixes #52180. git-svn-id: https://develop.svn.wordpress.org/trunk@49910 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/export.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wp-admin/includes/export.php b/src/wp-admin/includes/export.php index 74d7c5f823..75c7b4924f 100644 --- a/src/wp-admin/includes/export.php +++ b/src/wp-admin/includes/export.php @@ -23,6 +23,7 @@ define( 'WXR_VERSION', '1.2' ); * 'auto-draft' status will be skipped. * * @since 2.1.0 + * @since 5.7.0 Added the `post_modified` and `post_modified_gmt` fields to the export file. * * @global wpdb $wpdb WordPress database abstraction object. * @global WP_Post $post Global post object. @@ -576,6 +577,8 @@ function export_wp( $args = array() ) { ID; ?> post_date ); ?> post_date_gmt ); ?> + post_modified ); ?> + post_modified_gmt ); ?> comment_status ); ?> ping_status ); ?> post_name ); ?>