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
- Login into your google blogger account.
- Click on the Settings->Other options. Then Click on the “Export blog” under the “Blog Tools”.
- 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
- Login to your another blogger account In which you have to import the blogger posts.
- Click on the Settings->Other options. Then Click on the “Import blog” under the “Blog Tools”.
- 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
- Login to your WordPress account.
- Go to the Dashboard of Blogger. Then Click on the Tools menu and select Export link (Tools -> Export)
- Then clicking on “Download Export File” button and save xml file to your computer.
- Go to WordPress2Blogger website, Then convert the downloaded wordpress XML post file to blogger XML file.
- 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
01
xml
version
=
'1.0'
encoding
=
'UTF-8'
?>
02
<
ns0:feed
xmlns:ns0
=
"http://www.w3.org/2005/Atom"
>
03
<
ns0:generator
>Blogger</
ns0:generator
>
04
<
ns0:entry
>
05
<
ns0:category
scheme
=
"http://schemas.google.com/g/2005#kind"
term
=
"http://schemas.google.com/blogger/2008/kind#post"
/>
06
<
ns0:id
>BLOGGER TEST</
ns0:id
>
07
<
ns0:content
type
=
"html"
>Blogger CONTENT</
ns0:content
>
08
<
ns0:published
>2013-10-29T03:22:00.001-07:00</
ns0:published
>
09
<
ns0:title
type
=
"html"
>BLOGGER TITLE</
ns0:title
>
10
</
ns0:entry
>
11
</
ns0:feed
>
01 |
|
02 | < ns0:feed xmlns:ns0 = "http://www.w3.org/2005/Atom" > |
03 | < ns0:generator >Blogger</ ns0:generator > |
04 | < ns0:entry > |
05 | < ns0:category scheme = "http://schemas.google.com/g/2005#kind" term = "http://schemas.google.com/blogger/2008/kind#post" /> |
06 | < ns0:id >BLOGGER TEST</ ns0:id > |
07 | < ns0:content type = "html" >Blogger CONTENT</ ns0:content > |
08 | < ns0:published >2013-10-29T03:22:00.001-07:00</ ns0:published > |
09 | < ns0:title type = "html" >BLOGGER TITLE</ ns0:title > |
10 | </ ns0:entry > |
11 | </ ns0:feed > |
Blogger XML file structure with Category
01
xml
version
=
'1.0'
encoding
=
'UTF-8'
?>
02
<
ns0:feed
xmlns:ns0
=
"http://www.w3.org/2005/Atom"
>
03
<
ns0:generator
>Blogger</
ns0:generator
>
04
<
ns0:entry
>
05
<
ns0:category
scheme
=
"http://schemas.google.com/g/2005#kind"
term
=
"http://schemas.google.com/blogger/2008/kind#post"
/>
06
<
ns0:category
scheme
=
"http://www.blogger.com/atom/ns#"
term
=
"CATEGORY A"
/>
07
<
ns0:id
>BLOGGER TEST</
ns0:id
>
08
<
ns0:content
type
=
"html"
>Blogger CONTENT</
ns0:content
>
09
<
ns0:title
type
=
"html"
>BLOGGER TITLE</
ns0:title
>
10
</
ns0:entry
>
11
</
ns0:feed
>
01 |
|
02 | < ns0:feed xmlns:ns0 = "http://www.w3.org/2005/Atom" > |
03 | < ns0:generator >Blogger</ ns0:generator > |
04 | < ns0:entry > |
05 | < ns0:category scheme = "http://schemas.google.com/g/2005#kind" term = "http://schemas.google.com/blogger/2008/kind#post" /> |
06 | < ns0:category scheme = "http://www.blogger.com/atom/ns#" term = "CATEGORY A" /> |
07 | < ns0:id >BLOGGER TEST</ ns0:id > |
08 | < ns0:content type = "html" >Blogger CONTENT</ ns0:content > |
09 | < ns0:title type = "html" >BLOGGER TITLE</ ns0:title > |
10 | </ ns0:entry > |
11 | </ ns0:feed > |
Blogger XML post structure with Time, Category
01
xml
version
=
'1.0'
encoding
=
'UTF-8'
?>
02
<
ns0:feed
xmlns:ns0
=
"http://www.w3.org/2005/Atom"
>
03
<
ns0:generator
>Blogger</
ns0:generator
>
04
<
ns0:entry
>
05
<
ns0:category
scheme
=
"http://schemas.google.com/g/2005#kind"
term
=
"http://schemas.google.com/blogger/2008/kind#post"
/>
06
<
ns0:category
scheme
=
"http://www.blogger.com/atom/ns#"
term
=
"CATEGORY A"
/>
07
<
ns0:id
>BLOGGER TEST</
ns0:id
>
08
<
ns0:content
type
=
"html"
>Blogger CONTENT</
ns0:content
>
09
<
ns0:published
>2013-10-29T03:22:00.001-07:00</
ns0:published
>
10
<
ns0:title
type
=
"html"
>BLOGGER TITLE</
ns0:title
>
11
</
ns0:entry
>
12
</
ns0:feed
>
01 |
|
02 | < ns0:feed xmlns:ns0 = "http://www.w3.org/2005/Atom" > |
03 | < ns0:generator >Blogger</ ns0:generator > |
04 | < ns0:entry > |
05 | < ns0:category scheme = "http://schemas.google.com/g/2005#kind" term = "http://schemas.google.com/blogger/2008/kind#post" /> |
06 | < ns0:category scheme = "http://www.blogger.com/atom/ns#" term = "CATEGORY A" /> |
07 | < ns0:id >BLOGGER TEST</ ns0:id > |
08 | < ns0:content type = "html" >Blogger CONTENT</ ns0:content > |
09 | < ns0:published >2013-10-29T03:22:00.001-07:00</ ns0:published > |
10 | < ns0:title type = "html" >BLOGGER TITLE</ ns0:title > |
11 | </ ns0:entry > |
12 | </ ns0:feed > |
Blogger XML post structure with Multiple Category, Entry
01
xml
version
=
'1.0'
encoding
=
'UTF-8'
?>
02
<
ns0:feed
xmlns:ns0
=
"http://www.w3.org/2005/Atom"
>
03
<
ns0:generator
>Blogger</
ns0:generator
>
04
05
<
ns0:entry
>
06
<
ns0:category
scheme
=
"http://schemas.google.com/g/2005#kind"
term
=
"http://schemas.google.com/blogger/2008/kind#post"
/>
07
<
ns0:category
scheme
=
"http://www.blogger.com/atom/ns#"
term
=
"CATEGORY A"
/>
08
<
ns0:category
scheme
=
"http://www.blogger.com/atom/ns#"
term
=
"CATEGORY B"
/>
09
<
ns0:id
>BLOGGER TEST</
ns0:id
>
10
<
ns0:content
type
=
"html"
>Blogger CONTENT</
ns0:content
>
11
<
ns0:published
>2013-10-29T03:22:00.001-07:00</
ns0:published
>
12
<
ns0:title
type
=
"html"
>BLOGGER TITLE</
ns0:title
>
13
</
ns0:entry
>
14
15
<
ns0:entry
>
16
<
ns0:category
scheme
=
"http://schemas.google.com/g/2005#kind"
term
=
"http://schemas.google.com/blogger/2008/kind#post"
/>
17
<
ns0:category
scheme
=
"http://www.blogger.com/atom/ns#"
term
=
"CATEGORY C"
/>
18
<
ns0:category
scheme
=
"http://www.blogger.com/atom/ns#"
term
=
"CATEGORY D"
/>
19
<
ns0:id
>BLOGGER TEST 2</
ns0:id
>
20
<
ns0:content
type
=
"html"
>Blogger CONTENT 2</
ns0:content
>
21
<
ns0:published
>2013-10-30T03:22:00.001-07:00</
ns0:published
>
22
<
ns0:title
type
=
"html"
>BLOGGER TITLE 2</
ns0:title
>
23
</
ns0:entry
>
24
25
</
ns0:feed
>
01 |
|
02 | < ns0:feed xmlns:ns0 = "http://www.w3.org/2005/Atom" > |
03 | < ns0:generator >Blogger</ ns0:generator > |
04 |
05 | < ns0:entry > |
06 | < ns0:category scheme = "http://schemas.google.com/g/2005#kind" term = "http://schemas.google.com/blogger/2008/kind#post" /> |
07 | < ns0:category scheme = "http://www.blogger.com/atom/ns#" term = "CATEGORY A" /> |
08 | < ns0:category scheme = "http://www.blogger.com/atom/ns#" term = "CATEGORY B" /> |
09 | < ns0:id >BLOGGER TEST</ ns0:id > |
10 | < ns0:content type = "html" >Blogger CONTENT</ ns0:content > |
11 | < ns0:published >2013-10-29T03:22:00.001-07:00</ ns0:published > |
12 | < ns0:title type = "html" >BLOGGER TITLE</ ns0:title > |
13 | </ ns0:entry > |
14 |
15 | < ns0:entry > |
16 | < ns0:category scheme = "http://schemas.google.com/g/2005#kind" term = "http://schemas.google.com/blogger/2008/kind#post" /> |
17 | < ns0:category scheme = "http://www.blogger.com/atom/ns#" term = "CATEGORY C" /> |
18 | < ns0:category scheme = "http://www.blogger.com/atom/ns#" term = "CATEGORY D" /> |
19 | < ns0:id >BLOGGER TEST 2</ ns0:id > |
20 | < ns0:content type = "html" >Blogger CONTENT 2</ ns0:content > |
21 | < ns0:published >2013-10-30T03:22:00.001-07:00</ ns0:published > |
22 | < ns0:title type = "html" >BLOGGER TITLE 2</ ns0:title > |
23 | </ ns0:entry > |
24 |
25 | </ ns0:feed > |