1215c1215
<                       $dateCreated = str_replace( 'Z', '', $content_struct['date_created_gmt']->getIso() ) . 'Z'; // We know this is supposed to be GMT, so we're going to slap that Z on there by force
---
>                       $dateCreated = str_replace( 'Z', '', $content_struct['date_created_gmt'] ) . 'Z'; // We know this is supposed to be GMT, so we're going to slap that Z on there by force
1217c1217
<                       $comment_date_gmt = iso8601_to_datetime($dateCreated, GMT);
---
>                       $comment_date_gmt = iso8601_to_datetime($dateCreated, 'GMT');
2185c2185
<                       $dateCreated = str_replace( 'Z', '', $content_struct['date_created_gmt']->getIso() ) . 'Z'; // We know this is supposed to be GMT, so we're going to slap that Z on there by force
---
>                       $dateCreated = str_replace( 'Z', '', $content_struct['date_created_gmt'] ) . 'Z'; // We know this is supposed to be GMT, so we're going to slap that Z on there by force
2187c2187
<                       $dateCreated = $content_struct['dateCreated']->getIso();
---
>                       $dateCreated = $content_struct['dateCreated'];
2191c2191
<                       $post_date_gmt = iso8601_to_datetime($dateCreated, GMT);
---
>                       $post_date_gmt = iso8601_to_datetime($dateCreated, 'GMT');
2502c2502
<                       $dateCreated = str_replace( 'Z', '', $content_struct['date_created_gmt']->getIso() ) . 'Z'; // We know this is supposed to be GMT, so we're going to slap that Z on there by force
---
>                       $dateCreated = str_replace( 'Z', '', $content_struct['date_created_gmt'] ) . 'Z'; // We know this is supposed to be GMT, so we're going to slap that Z on there by force
2504c2504
<                       $dateCreated = $content_struct['dateCreated']->getIso();
---
>                       $dateCreated = $content_struct['dateCreated'];
2508c2508
<                       $post_date_gmt = iso8601_to_datetime($dateCreated, GMT);
---
>                       $post_date_gmt = iso8601_to_datetime($dateCreated, 'GMT');
