Switching The Blogger To Wordpress Without Loosing Google Rankings

Add a review

Descriptions

Blogger is an incredible free tool to quickly begin blogging. However, many Blogger users realize  that if they need full manipulate in their website, then they would be better off with their personal self hosted WordPress.Org weblog (what’s the difference among self-hosted WordPress.Org vs WordPress.Com blogs). In this  tutorial, we can assist you switch from Blogger to WordPress without loosing Google Rankings.

Here are the steps you'll be taking to change from Blogger to WordPress with out dropping Google rankings.

1.Sign up with WordPress web hosting corporation.
2.Export your Blogger blog through travelling Settings » Other page.
3.mport Blogger to WordPress by travelling Tools » Import web page in WordPress admin place.
4.Setting up permalinks on your new WordPress weblog.
5.Setting up redirects for Blogger traffic to WordPress posts
6.Set up redirects for RSS feeds
7.Import your images from Blogger to WordPress media library.

Video Tutorial



Step 0. Before You Start

To get began with WordPress, the first issue you'll need is a superb WordPress web hosting employer and your own domain call. We surprisingly suggest Bluehost because they'll provide you with a unfastened area and 50% off their hosting plan (unique for WPBeginner customers). Bluehost is also an officially advocated website hosting provider of WordPress.


Once you've got signed up for WordPress website hosting and set up your domain call, the next step is to put in WordPress on your hosting account. We have a little by little tutorial on the way to set up WordPress. Once you have got set up WordPress, it is time to move your content from Blogger to WordPress.

Step 1. Export Your Blogger Blog
First factor you need to do is export your blogger weblog’s content. Simply log into your blogger dashboard and visit Settings » Other web page. Under the ‘Import & back up’ phase, you want to ‘Back up Content’ button.

Export your Blogger blog backup

This will carry up a popup in which you want to click on at the ‘Save for your laptop’ button.


Your Blogger weblog’s content might be downloaded to your laptop in an XML report.

Once the download is complete, it's time to import it into your WordPress site.

Step 2. Import Blogger to WordPress

To start importing your Blogger website into WordPress, you want to go to your WordPress admin and visit Tools » Import. On the Import web page, click on Blogger.

Blogger importer below WordPress import tools

This will bring up a popup asking you to install the Blogger to WordPress importer. You need to click on on the Insall button.

WordPress will now download and deploy the Blogger Importer plugin for you. Once it's far finished installing, you would want to click on the Activate Plugin and Run Importer hyperlink to maintain.

Activate and run blogger importer

On the Import Blogger screen, WordPress will ask you to upload the XML report. This is the document which you downloaded in Step 1.

Simply click on on the select document button and add the XML report you downloaded earlier. Next, click on at the Upload report and import button to continue.

Upload Blogger export file to WordPress

Now in case you didn’t pick certainly one of our endorsed hosts or your website online is in reality massive, you may get an errors that your report size is too huge. In this situation, you will want to increase your most document add restriction. If your report is small, then you won’t see any mistakes.

WordPress will now import your blogger posts one at a time. When it's far completed, you'll be asked to assign an writer to the imported posts. You can assign your blogger posts to an present creator (you) or create a brand new author account.

Congratulations! You have effectively imported your Blogger content material into WordPress. However, you continue to want to ensure which you don’t unfastened any search scores and that site visitors from your vintage blog effortlessly land to the same content on your new WordPress website.

Step 3. Setting up Permalinks

Permalinks is the time period used for URL structure of individual pages. WordPress comes with a feature that permits you to set up search engine marketing friendly URL structure. However, because you are uploading content material from Blogger, you'll need your URL structure to be as near your Blogger URL shape as possible.

To set permalinks, you want to visit Settings » Permalinks screen and select Month and Name as your permalink shape.

Choosing a permalink shape to your WordPress website online

Step 4. Setting up Redirection

The most important step in transferring any website is to installation proper redirection in order that users are redirected in your new website.

The critical a part of redirection is which you need customers to land on exactly the equal web page on the new web site which they have been seeking to get right of entry to on the antique web site. Secondly, this also notifies engines like google that your antique site is moved to a brand new area.

To effectively circulate from Blogger to WordPress, you need to installation redirection on  ranges.

First, you will redirect Blogger traffic in your new WordPress weblog. Second, once users reach your WordPress site, you will redirect them to the exact publish they had been looking to read.

Let’s first set up redirection on the blogger weblog. You need to log on for your Blogger account and visit your Blog’s settings and click on Template.

Blogger Template

On the template web page, you want to scroll down to the bottom of the page and click on on Revert to Classic Template link.

Revert to conventional template to your Blogger weblog

After switching to classic template, you will see ‘Edit Template HTML’ textarea. You need to replace the whole lot in this text place with the subsequent code. Make positive that you replace http://www.Instance.Com with your personal domain call.

<html>
 <head>
  <title><$BlogPageTitle$></title>

   <script>
    <MainOrArchivePage>
    window.Area.Href="http://example.Com/"
    </MainOrArchivePage>
    <Blogger>
     <ItemPage>
     window.Region.Href="http://example.Com/?Blogger=<$BlogItemPermalinkURL$>"
     </ItemPage>
    </Blogger>
   </script>

   <MainPage>
   <link rel="canonical" href="http://example.Com/" />
   </MainPage>

   <Blogger>
    <ItemPage>
    <hyperlink rel="canonical" href="http://example.Com/?Blogger=<$BlogItemPermalinkURL$>" />
    </ItemPage>
   </Blogger>
 </head>

 <body>
  <MainOrArchivePage>
   <h1><a href="http://example.Com/"><$BlogTitle$></a></h1>
  </MainOrArchivePage>
  <Blogger>
   <ItemPage>
    <h1><a href="http://example.Com/?Blogger=<$BlogItemPermalinkURL$>"><$BlogItemTitle$></a></h1>
    <$BlogItemBody$>
   </ItemPage>
  </Blogger>
 </body>
</html>
Save your template, and you have efficaciously carried out redirection on your Blogger weblog.

However, you still need to setup redirection on your WordPress site so that customers are redirected to the right posts.

You want to replicate and paste the subsequent code to your WordPress theme’s functions.Php file or in a website-particular plugin.

If that is your first time adding code on your WordPress website, then you may want to test our beginner’s guide to pasting snippets from the web into WordPress.

function blogger_query_vars_filter( $vars )
  $vars[] = "blogger";
  return $vars;


add_filter('query_vars', 'blogger_query_vars_filter');

function blogger_template_redirect()
  international $wp_query;
  $blogger = $wp_query->query_vars['blogger'];
  if ( isset ( $blogger ) )
    wp_redirect( get_wordpress_url ( $blogger ) , 301 );
    exit;

add_action( 'template_redirect', 'blogger_template_redirect' );

feature get_wordpress_url($blogger)
  if ( preg_match('@^(?:https?://)?([^/]+)(.*)@i', $blogger, $url_parts) )
    $question = new WP_Query (
      array ( "meta_key" => "blogger_permalink", "meta_value" => $url_parts[2] ) );
    if ($question->have_posts())
      $query->the_post();
      $url = get_permalink();
   
    wp_reset_postdata();
 
  go back $url ? $url : home_url();

The code above creates a blogger to WordPress 301 redirect which is what you want to make sure first-class search engine optimization.

Once you have got pasted this code, that’s all you want to do for setting up redirection.

Now anybody traveling a submit on your old Blogger blog might be redirected to the equal publish on your new WordPress web page.

Step 5. Redirect Feeds

Your RSS subscribers at the antique Blogger web page will no longer be capable of be aware the switch. That’s why you'll want to redirect your Blogger feed for your new WordPress web site’s feed.

You can do this with the aid of logging in on your Blogger account after which go to Settings » Other page below your weblog dashboard.

Under the Site Feed phase, click on Add link subsequent to Post Feed Redirect URL. Here you can input your new WordPress site’s feed deal with.

Usually it's miles http://your-high-quality-website.Com/feed/ (don’t forget to update your-notable-web site with your very own area name).

Step 6. Import Images From Blogger to WordPress Media Library

When you are transferring blogger to WordPress, the WordPress importer will download photos out of your blogger posts into the WordPress media library. However, it may fail to download some photographs. This doesn’t happen frequently, but it could happen.

But there’s not anything to worry about due to the fact you can find and import these images into WordPress. Follow the commands in our a way to import outside images in WordPress academic.

This will import all pix from your blogger into your WordPress Media Library. Once the pix are for your WordPress media library, you could without difficulty create photo galleries and extra.

Similar Products

5405114984450206738

Add a review

CONTACT FORM

Name

*

Message *

Account Number Add to cart Add to Wishlist Add Address Apply Archive Billing Address and Shipping Address Billing Address Billing Details Cancel reply Cart Cash on Delivery Checkout Cheque Payment Company Name Country Coupon code Coupon value Coupon Customer details Direct Bank Transfer Email Address Email address... Email First Name Tax Free Shipping N/A Home Input keywords and enter ... items to cart Last Name Link Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order will not be shipped until the funds have cleared in our account Message METHOD Name NEW ORDER Not Found Any Product Matching Your Query On sale Order Details Order ID Order Notes Order via Whatsapp Our Bank Details Out of stock PAGE MISSING Pay via PayPal; you can pay with your credit card if you have no a PayPal account QR Payment Esewa Fonepay Pay via Esewa Fonepay Please make your payment directly via Esewa Fonepay. Use your Order ID as the payment reference. Your order will not be shipped until the funds have cleared in our account. Pay with cash upon delivery. Payment method Phone Place Order Please send your cheque to Postcode / Zip Price Proceed checkout Product Quantity Readmore Remove from cart Remove from wishlist Send Ship to a different address? Shipping Address Shipping and Handling Shipping Some items had been deleted or blog is in Private mode. Please reload and contact admin Some items have no price data. Please reload and contact admin for updating Something Went Wrong Sort Code SUBSCRIBE Subtotal after applied coupon Subtotal Thank you. Your order has been received Thank you. Here is your order. However, due to a network problem, the shop owner did not receive your order. Please take a screenshot and send it to the owner to finish your order The cart is empty now The wishlist is empty now This coupon is not available This search can help you find what you need Total Town / City / State Update cart View all products of View Cart View wishlist was successfully added to your cart was successfully added to your wishlist Wishlist Your Order
I have read and agree the terms