Importing old blog with regular posts into new custom post types

I have 2 older WP blog installs with regular posts that I would like to bring over to a new blog. One of the older installs is for “news” posts and the other is for “blog” posts (I know this was not the best way of setting things up).

In my new blog, I have created two custom post types (“news” and “blog”) and I would like to import these two older installs into my new install’s respective post types.

Read More

Is there an automated way of doing this (perhaps a plugin) that would save me from manually re-entering all of these posts? I’m assuming that simply importing these will not allow me to mark them as a custom post type and instead would make them generic posts.

Thank you!
Jake

Related posts

Leave a Reply

3 comments

  1. As an alternative, when you use the WordPress Export tool, you can open the XML file that is exported in any text editor (I used Notepad++).

    I did a simple find a replace on this line:

    <wp:post_type>post</wp:post_type>
    

    and replaced with:

    <wp:post_type>blog</wp:post_type>
    

    This took all my old “posts” and made them into my new custom content type “blog”.

    Then I just imported into the new site, that already had a custom post type called “blog” and it worked flawlessly.

  2. Update to @gamerzfuse’s answers,

    After opening XML in editor, replace below lines/keywords.

    Find the below line

    <wp:post_type><![CDATA[post]]></wp:post_type>
    

    and replac with:

    <wp:post_type><![CDATA[CustomPostType]]></wp:post_type>
    

    To add category, find

    domain="category"
    

    and replace with

    domain="CustomPostTypeCategorySlug"
    

    To add tags, find

    post_tag
    

    and replace with

    CustomPostTypeTagSlug
    

    This will also import Categories and Tags associated with the post into Custom Post Type.