Hello!
I’ve been having a tough time importing a large Blogger xml backup (113MB), but after a lot of troubleshooting was able to convert it to wxr and split it into 4MB pieces. Now, everything imports beautifully except for the tags. I noticed the tags are imported but are none are actually appointed to their appropriate posts.
I took a look into the xml and here’s a sample of what the tag section for each post look like. Any ideas on how to get them to apply to each post correctly?
<category domain="tag">Anniversary</category>
<category domain="tag">Manolo Blahnik</category>
<category domain="tag">wedding wear</category>
<category domain="tag">Wedding</category>
Thank you!
]]>Found + replaced each tag with the correct WP structure:
For example:
<category domain="tag">Anniversary</category>
to
<category domain="tag"><![CDATA[Anniversary]]></category>
<category domain="tag" nicename="Anniversary"><![CDATA[Anniversary]]></category>
Works now ??
]]>