Title: Issue export date/time
Last modified: June 23, 2020

---

# Issue export date/time

 *  Resolved [rafasantos](https://wordpress.org/support/users/rafasantos/)
 * (@rafasantos)
 * [5 years, 12 months ago](https://wordpress.org/support/topic/issue-export-date-time/)
 * I’m trying to export the post time,
    but it’s being exported with the wrong time.
   Exports 4:00 and should be 1:00.
 * Could you help me please?

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [WP All Import](https://wordpress.org/support/users/wpallimport/)
 * (@wpallimport)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/issue-export-date-time/#post-13040490)
 * Hi [@rafasantos](https://wordpress.org/support/users/rafasantos/)
 * This is likely because WP All Export exports the GMT date by default. Please 
   try using the following function on the “ID” field to get the local post_date
   field:
 *     ```
       function my_get_date( $id ) {
       	if ( $post = get_post( $id ) ) {
       		return date( 'Y-m-d h:i:s', strtotime( $post->post_date ) );
       	}
       }
       ```
   
 * Learn more here: [https://www.wpallimport.com/documentation/export/pass-data-through-php-functions/](https://www.wpallimport.com/documentation/export/pass-data-through-php-functions/).
 * Let me know how it goes.
 *  Thread Starter [rafasantos](https://wordpress.org/support/users/rafasantos/)
 * (@rafasantos)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/issue-export-date-time/#post-13049512)
 * Perfect! Thanks a lot for your help. 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Issue export date/time’ is closed to new replies.

 * ![](https://ps.w.org/wp-all-export/assets/icon-256x256.png?rev=2570162)
 * [WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel](https://wordpress.org/plugins/wp-all-export/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-all-export/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-all-export/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-all-export/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-all-export/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-all-export/reviews/)

## Tags

 * [date](https://wordpress.org/support/topic-tag/date/)
 * [time](https://wordpress.org/support/topic-tag/time/)
 * [timestamp](https://wordpress.org/support/topic-tag/timestamp/)

 * 2 replies
 * 2 participants
 * Last reply from: [rafasantos](https://wordpress.org/support/users/rafasantos/)
 * Last activity: [5 years, 11 months ago](https://wordpress.org/support/topic/issue-export-date-time/#post-13049512)
 * Status: resolved