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.
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
Try importing and then using a plugin (Post Type Switcher) to change the type. There are a few other plugins out there for this, I seem to remember one which would convert multiple posts, but I couldn’t find it just now.
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:
and replaced with:
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.
Update to @gamerzfuse’s answers,
After opening XML in editor, replace below lines/keywords.
Find the below line
and replac with:
To add category, find
and replace with
To add tags, find
and replace with
This will also import Categories and Tags associated with the post into Custom Post Type.