Thread Starter
bjaost
(@bjaost)
Ended up using the “WP All Import” plugin. I got the job done with the free version.
The only drawback was that I could not figure out how to import all the tags for a post in the first run. I therefor had to rerun the import 20 times, only changing the number in the category[x] array.
To get the import of the tags to work I also had to run a regxp on the XML file to change the category from <category scheme=’http://www.blogger.com/atom/ns#’ term=’yourtag’ /> to <category scheme=’http://www.blogger.com/atom/ns#’ term=’yourtag’>yourtag</category>.
I used notepad++ and this regexp
Search: <category scheme=’http://www.blogger.com/atom/ns#’ term='([^’]*)’/>
Replace: <category scheme=’http://www.blogger.com/atom/ns#’ term=’\1′>\1</category>