Import xml posts or file into blogger

Import Posts From Blogger To Blogger

This tutorial will helpful to import posts, Tags and comments from one blogger to another blogger. Follow the below steps:

Export posts From Blogger

Exoirt xml posts from blogger

  1. Login into your google blogger account.
  2. Click on the Settings->Other options. Then Click on the “Export blog” under the “Blog Tools”.
  3. Click on the “Download Blog” button. Now you will get the XML format file. It contains your blog posts in XML format.

Import posts To Blogger XML file

Import xml posts into blogger

  1. Login to your another blogger account In which you have to import the blogger posts.
  2. Click on the Settings->Other options. Then Click on the “Import blog” under the “Blog Tools”.
  3. Now you will get one form in lightbox, In that lightbox form you have to import XML file and enter the captcha. Then Click on the “Import Blog” button to import the posts into your blogger.

Import A WordPress Blog into Blogger

  1. Login to your WordPress account.
  2. Go to the Dashboard of Blogger. Then Click on the Tools menu and select Export link (Tools -> Export)
  3. Then clicking on “Download Export File” button and save xml file to your computer.
  4. Go to WordPress2Blogger website, Then convert the downloaded wordpress XML post file to blogger XML file.
  5. Then Goto your blogger account. Click on the Settings->Other options. Then import the XML file using “Import blog” link under the “Blog Tools”.

Import Posts From Custom XML File To Blogger

Using the above methos We can import XML file downloaded from Blogger. If you want to import the customized xml file into Blogger, Just follow the below format of XML file.

Simple Blogger XML file structure

<?xml version='1.0' encoding='UTF-8'?> 
<ns0:feed xmlns:ns0="http://www.w3.org/2005/Atom"> 
<ns0:generator>Blogger</ns0:generator>
<ns0:entry> 
<ns0:category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/blogger/2008/kind#post" /> 
<ns0:id>BLOGGER TEST</ns0:id> 
<ns0:content type="html">Blogger CONTENT</ns0:content> 
<ns0:published>2013-10-29T03:22:00.001-07:00</ns0:published> 
<ns0:title type="html">BLOGGER TITLE</ns0:title> 
</ns0:entry> 
</ns0:feed>

Blogger XML file structure with Category

<?xml version='1.0' encoding='UTF-8'?> 
<ns0:feed xmlns:ns0="http://www.w3.org/2005/Atom"> 
<ns0:generator>Blogger</ns0:generator>
<ns0:entry> 
<ns0:category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/blogger/2008/kind#post" /> 
<ns0:category scheme="http://www.blogger.com/atom/ns#" term="CATEGORY A" />
<ns0:id>BLOGGER TEST</ns0:id> 
<ns0:content type="html">Blogger CONTENT</ns0:content> 
<ns0:title type="html">BLOGGER TITLE</ns0:title> 
</ns0:entry> 
</ns0:feed>

Blogger XML post structure with Time, Category

<?xml version='1.0' encoding='UTF-8'?> 
<ns0:feed xmlns:ns0="http://www.w3.org/2005/Atom"> 
<ns0:generator>Blogger</ns0:generator>
<ns0:entry> 
<ns0:category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/blogger/2008/kind#post" /> 
<ns0:category scheme="http://www.blogger.com/atom/ns#" term="CATEGORY A" />
<ns0:id>BLOGGER TEST</ns0:id> 
<ns0:content type="html">Blogger CONTENT</ns0:content> 
<ns0:published>2013-10-29T03:22:00.001-07:00</ns0:published> 
<ns0:title type="html">BLOGGER TITLE</ns0:title> 
</ns0:entry> 
</ns0:feed>

Blogger XML post structure with Multiple Category, Entry

<?xml version='1.0' encoding='UTF-8'?> 
<ns0:feed xmlns:ns0="http://www.w3.org/2005/Atom"> 
<ns0:generator>Blogger</ns0:generator>

<ns0:entry> 
<ns0:category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/blogger/2008/kind#post" /> 
<ns0:category scheme="http://www.blogger.com/atom/ns#" term="CATEGORY A" />
<ns0:category scheme="http://www.blogger.com/atom/ns#" term="CATEGORY B" />
<ns0:id>BLOGGER TEST</ns0:id> 
<ns0:content type="html">Blogger CONTENT</ns0:content> 
<ns0:published>2013-10-29T03:22:00.001-07:00</ns0:published> 
<ns0:title type="html">BLOGGER TITLE</ns0:title> 
</ns0:entry> 

<ns0:entry> 
<ns0:category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/blogger/2008/kind#post" /> 
<ns0:category scheme="http://www.blogger.com/atom/ns#" term="CATEGORY C" />
<ns0:category scheme="http://www.blogger.com/atom/ns#" term="CATEGORY D" />
<ns0:id>BLOGGER TEST 2</ns0:id> 
<ns0:content type="html">Blogger CONTENT 2</ns0:content> 
<ns0:published>2013-10-30T03:22:00.001-07:00</ns0:published> 
<ns0:title type="html">BLOGGER TITLE 2</ns0:title> 
</ns0:entry> 

</ns0:feed>

Leave a Reply

Your email address will not be published. Required fields are marked *