This repository was archived by the owner on Jun 3, 2020. It is now read-only.

Description
Thanks a lot for this tool.
Today, Wordpress allows writers to attach a "Feature Image" to each post. This image is for example used as an image preview when listing posts, or as an image header when viewing the post.
I looked at my wordpress.xml file, and it seems that the image is captured as the following:
The post <item> contains this metadata:
<wp:postmeta>
<wp:meta_key>_thumbnail_id</wp:meta_key>
<wp:meta_value><![CDATA[1089]]></wp:meta_value>
</wp:postmeta>
Which references another <item>, which has the same ID: <wp:post_id>1089</wp:post_id>
The URL of the image is stored in the <wp:attachment_url> attribute and/or in the <guid isPermaLink="false"> attribute.
Is this something that exitwp could support?