How To Migrate From Blogger To WordPress In Less Than 5 Min

GET PREMIUM WORDPRESS PLUGINS & THEMES AT 90% DISCOUNT

How-to-Migrate-From-Blogger-to-Wordpress_Blog
Picture of Munish Siwatch
Munish Siwatch

Web Developer & Writer

Blogger is a renowned platform by Google for creating websites and online portals. If we survey a group of bloggers and ask them how they started their blogging journey, “Blogger” or “Blogspot” would be a very common answer to hear. This is because it is one of the oldest free platforms that you can use to create a website.

Well, being a free service, the Blogspot platform has many limitations also. You cannot really expect to scale up and do the advanced stuff using the Blogspot platform.

Once your website starts getting traffic and user engagement, it is always a good idea to shift to a self-hosted WordPress blog. This is because WordPress offers greater flexibility in customizing the website according to your need. You can update and change the features of your website and make it remarkably stunning for your user. You won’t regret your blogging decision once you are on WordPress as it becomes easy to use and scale. The best part- Blogger to WordPress migration will take hardly 5 minutes if you follow this step-by-step guide.

You can migrate from Blogger to WordPress using these 5 simple steps:

Step 1: Create a Backup for Blogger

Step 2: Install WordPress

Step 3: Migrate to WordPress

Step 4: Switch RSS Feed to WordPress

Step 5: Match WordPress Permalink to Blogspot Permalink

 

To completely transfer your old Blogspot blog to a custom WordPress blog, the migration will include-

  1. Migration of all the posts and comments to WordPress
  2. Migration of the images to WordPress
  3. Migration of visitors from Blogspot to WordPress
  4. Redirecting users from posts in Blogspot to posts on WordPress
  5. Migrating Feedburner Feeds by keeping the subscribers

The above migration will completely transfer your Blogspot blog to WordPress without affecting the traffic and the Google Page Rank.

For easy migration from Blogspot to WordPress, WordPress provides a one-click option for importing all the content. This is simple but, to pass all the Link Juice from your old blogspot.com domain to your new WordPress blog, you will need to follow few more steps.

If you are not aware, Link Juice is passed when other blogs and website give links to your site. This is a major Google Page rank factor for ranking your website on the top in the search engine.

Follow this step by step Blogspot to WordPress migration guide. This will also help you in transferring the Google Link Juice from your old Blogger domain to the new WordPress site.

 

Blogger to WordPress Migration- Step-by-Step Guide

Step 1: Create Backup for Blogger

Before starting up the migration process, it is always a good idea to take a quick backup of your old Blogspot blog. The backup will include all the blog content including the blog posts, XML template, and comments. This is a good practice and prevents you from losing data in case of any failure.

To take the backup of your Blogspot Blog-> Read this full guide

 

Step 2: Installing WordPress

  • It is always preferred to purchase a custom domain name for your WordPress website.
    For eg: your old Blogspot link looks something like- www.abc.blogspot.in
    For WordPress, you can purchase a domain name of your choice – www.abc.com (Always go for top-level domains like .com and .net)
  • Install WordPress manually or using Softaculous.
  • Open your WordPress Dashboard.
    Go to posts -> Delete the default post “Hello World.”
    Go to pages -> Delete the default Sample Page

 

Step 3: Migrating to WordPress

  • Open the WordPress dashboard. In the left menu, you will find “Tools.”
    Click on Tools -> Import, select the option for Blogger. Authorize the WordPress account to access your Blogger Account. Select your blogspot.com blog and proceed. This will copy all the content from your Blogger domain to the WordPress site including blog posts, comments, and pages.
  • Under Appearance -> Select Editor. This will lead you to your Theme codebase. Every Theme codebase usually includes a functions.php file. If not, you can manually create one using the cPanel. Copy and paste the following code snippet inside the function.php file and click on “Update File” to save changes.
  1. <?php
  2.  
  3. function xyz_blogger_query_vars_filter( $vars ) {
  4. $vars[] = “blogger”;
  5. return $vars;
  6. }
  7.  
  8. add_filter(‘query_vars’, ‘xyz_blogger_query_vars_filter’);
  9.  
  10. function xyz_blogger_template_redirect() {
  11. global $wp_query;
  12. $blogger = $wp_query->query_vars[‘blogger’];
  13. if ( isset ( $blogger ) ) {
  14. wp_redirect( xyz_get_wordpress_url ( $blogger ) , 301 );
  15. exit;
  16. }
  17. }
  18.  
  19. add_action( ‘template_redirect’, ‘xyz_blogger_template_redirect’ );
  20.  
  21. function xyz_get_wordpress_url($blogger) {
  22. if ( preg_match(‘@^(?:https?://)?([^/]+)(.*)@i’, $blogger, $url_parts) ) {
  23. $query = new WP_Query (
  24. array ( “meta_key” => “blogger_permalink”, “meta_value” => $url_parts[2] ) );
  25. if ($query->have_posts()) {
  26. $query->the_post();
  27. $url = get_permalink();
  28. }
  29. wp_reset_postdata();
  30. }
  31. return $url ? $url : home_url();
  32. }
  33.  
  34. ?>
  • Now open the Blogger Dashboard and choose Templates. Scroll down the page and select “Revert to Classic Template.” This will shift the view from XML-based Blogger template to the classic Tag-based template.
  • Copy and paste the below code snippet in your Blogger template editor. Do replace all the occurrences of xyz.com with your actual WordPress site URL. For e.g. your WordPress site link is www.abc.com, replace xyz.com with abc.com in the given code snippet and save the changes. Do the same for the above code snippet as well. Change XYZ with your domain name (Only the middle part. Eg. if the domain name is www.abc.com, use the only ABC)
  1. <html>
  2. <head>
  3. <title><$BlogPageTitle$></title>
  4. <script>
  5. <MainOrArchivePage>
  6. window.location.href=“http://xyz.com/”
  7. </MainOrArchivePage>
  8. <Blogger><ItemPage>
  9. window.location.href=”http://xyz.com/?blogger=<$BlogItemPermalinkURL$>
  10. </ItemPage></Blogger>
  11. </script>
  12. <MainPage>
  13. <link rel=“canonical” href=“http://xyz.com/” />
  14. </MainPage>
  15. <Blogger>
  16. <ItemPage>
  17. <link rel=”canonical” href=”http://xyz.com/?blogger=<$BlogItemPermalinkURL$>” />
  18. </ItemPage>
  19. </Blogger>
  20. </head>
  21. <body>
  22. <MainOrArchivePage>
  23. <h1><a href=“http://xyz.com/”><$BlogTitle$></a></h1>
  24. </MainOrArchivePage>
  25. <Blogger>
  26. <ItemPage>
  27. <h1><a href=”http://xyz.com/?blogger=<$BlogItemPermalinkURL$>”><$BlogItemTitle$></a></h1>
  28. <$BlogItemBody$>
  29. </ItemPage>
  30. </Blogger>
  31. </body>
  32. </html>

Now, open any page on your old Blogger blog and it should redirect you to your corresponding WordPress page. This is because we are using permanent 301 redirect which will pass all the Google Link Juice to your new WordPress website.

301-Redirect-mythemeshop

This method works for a regular blogspot.com URL and also country specific domains like blogspot.co.uk, blogspot.com.au or blogspot.in.

In this case, you have just moved all the posts, pages and comments but not your image files. Although this is still fine because the images on your WordPress website will still be linking to your blogspot.com domain because the images are still hosted on your blogspot.com domain.

Please Note: Migration of blog means the redirection of links to your new WordPress blog so, don’t delete your Blogspot blog even after migrating it to WordPress.

 

Step 4: Switch RSS Feed to WordPress

So now that you have successfully migrated from Blogger to WordPress, the RSS feed URL needs to be changed for your new website.

Go to Blogger -> Settings -> Other and select Post Feed Redirect URL under Site Feed. Type the web address of your new WordPress RSS feed here. This will move your existing RSS subscriber to your new feed.

 

Step 5: Match WordPress Permalink to Blogspot Permalink

You will now need to match the WordPress Permalink structure with the Blogspot Permalink Structure.

On your WordPress dashboard settings> permalinks

Change the permalink structure to the Blogspot version as given below:

/%year%/%monthnum%/%postname%.html

Permalink-Settings-WordPress 

What’s Next?

So now that you have successfully setup your new WordPress blog, there are still few points to ponder:

  1. Submit your WordPress site to Google Webmaster by verifying the site ownership. Also, submit the XML Sitemap listing all the links to your new site. You can also use the Yoast SEO plugin on your WordPress website which will help you to manage the SEO strategies for your blog.
  2. Add quality content to your blog and use the essential plugins, at many times, premium WordPress plugins to enhance the user experience on your website. This will generate more traffic after which you can also monetize your blog to earn money out of it.

 

Conclusion

Blogger is the best platform to start your blogging journey. It is a free platform where you can develop your website development skills and learn the basic working of how a website functions.

On the other hand, WordPress is the best platform for taking your website to a whole new level. The enhanced features of WordPress provide greater flexibility in connecting with your target audience. With WordPress, you can enhance the look of your website by using premium WordPress themes with just a few steps.

You can typically mold a WordPress website according to your way. The flexibility of customizing almost every single feature places WordPress among the top platform for setting up a clean and professional website.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook

New to creating a website? Join our newsletter.​

Let us do the work for you. Receive a bite-sized dose of AI, Tech, and Business news
delivered straight to your inbox.

Join over 38,500+ satisfied readers and subscribe to ByteBrief today!

Power Your Business

Some of the tools and services to help your business grow.

Software that's powerful, not overpowering. Seamlessly connect your data, teams, and customers on one CRM platform.

Try Hubspot

monday-power-business

Monday.com is an all-in-one work OS to help you manage projects, tasks, work, sales, CRM, operations, workflows, and more.

Try Monday

1 thought on “How To Migrate From Blogger To WordPress In Less Than 5 Min”

  1. But in case you want to avoid all the technical aspects, make use of CMS2CMS automated migration service and move all your website content in a smooth and fast way.

Leave a Comment

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

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Scroll to Top
1 Shares
Tweet
Pin1
Share
Share
Share