How to Properly Move Your Blog from Tumblr to WordPress

[agentsw ua=’pc’]

Do you want to move your Tumblr blog to WordPress?

WordPress is the most powerful website builder and blogging platform in the world. It gives you complete freedom to build any type of website that you want.

In this article, we will show you how to move your blog from Tumblr to WordPress properly.

tumblrtowp

Contents

Why You Should Move Your Tumblr Blog to WordPress?

WordPress is the most popular blogging platform in the world. It powers more than 43% of all websites on the internet.

To learn more about WordPress and what you can do with it, please see our complete WordPress review with pros and cons.

There are two types of WordPress. First, there is WordPress.com which is a hosted platform, and then there is WordPress.org, also called self-hosted WordPress. To understand the difference, please see our comparison of WordPress.com vs. WordPress.org.

We recommend using WordPress.org because it gives you the freedom to build any kind of website. It also gives you access to all powerful WordPress features out of the box.

Things You’ll Need to Move Tumblr to WordPress

To start with WordPress.org, you’ll need a domain name and a web hosting account.

We recommend using Bluehost. They are an officially recommended WordPress hosting provider, and one of the largest hosting companies in the world.

They are offering WPBeginner users a free domain name, free SSL Certificate, and discount on hosting. Basically, you can get started for $2.75 / month.

→ Click Here to Claim This Exclusive Bluehost Offer ←

If you can spend a little more, then we recommend SiteGround. They are also an officially recommended WordPress hosting service.

Note: Bluehost and SiteGround don’t allow the hosting of adult content on their servers.

If your Tumblr blog contains adult content, then we recommend HostGator. They are also on our list of the top WordPress hosting companies.

Once you have purchased hosting, the next step is to install WordPress. Most hosting providers offer 1-click WordPress installation. If you cannot find the option, then ask your hosting company, and they will install WordPress for you.

Alternately, you can follow our step-by-step guide on how to install WordPress to do it yourself.

After installation, you’ll reach the WordPress dashboard screen, which looks like this:

WordPress dashboard

Moving Your Content from Tumblr to WordPress

First, you need to visit Tools » Import page and click on the ‘Install Now’ button below Tumblr.

Installing Tumblr importer

WordPress will now fetch and install the Tumblr Importer tool for you. Once it is done, click on the ‘Run Importer’ link to continue.

Run Tumblr importer

On the next screen, you’ll need to provide OAuth Consumer and Secret keys. These keys allow your WordPress site to connect and import your content from Tumblr servers.

To get these keys, you need to click on the URL shown on the screen.

Connecting to Tumblr

This will take you to the Tumblr website where you need to click on the ‘Register Application’ button.

Register app

Next, you need to fill in the ‘Application Name’, ‘Application Website’, ‘Application Description, and ‘Default Callback URL’ fields. All the rest can be left blank.

For the website and default callback URL fields, you need to your WordPress site’s full URL. You can use anything you want for the Application name and description.

Register application

Once you are done, click the Register button at the bottom to continue.

Tumblr will now register the application and return you to the application dashboard.

From here, you can copy the consumer key. You need to click on the ‘Show Secret’ to reveal and copy the secret key.

Copy keys

You now need to go back to your WordPress admin area and go to Tools » Import page and run the importer again.

You can enter the keys you copied earlier in the importer settings and click on the ‘Connect to Tumblr’ button.

On the next screen, you need to click on the ‘Authorize this application’ button.

Authorize application

This will take you to Tumblr where you will be asked to allow the app to connect with your account. Click on the Allow button to continue.

Allow app

Next, you’ll be redirected back to your WordPress site, and the importer will now show your Tumblr blogs. Simply click on the ‘Import this blog’ button next to the blog you want to import.

Import your Tumblr blog

The importer will now start importing your content from Tumblr to WordPress. This may take some time depending on how much content you have.

Once finished, you will see the success message.

Import finished

You can now visit the Posts and Pages sections of your WordPress blog to see your imported content.

You can also visit your WordPress website to see how the posts are displayed on your live website.

Redirecting Tumblr Visitors to Your New WordPress Blog

Now that you have imported the content, you would want your Tumblr visitors to be able to find your new blog.

To do this, you need to edit your Tumblr blog’s theme. First, go to the Tumblr settings page.

Tumblr Settings

After that click on your blog name to open its settings.

Select your blog

This will open your blog settings. On this screen, you need to click on the ‘Edit theme’ button to continue.

Edit theme

Next, click on the ‘Edit HTML’ option under the theme name. This will allow you to edit the HTML code of your Tumblr theme.

Edit HTML of your Tumblr theme

Tumblr will now show you the HTML code of the theme.

First, you need to paste this code snippet right after the <head> tag.

<!-- Inside head -->
<meta name="description" content="this is a legacy blog page, and will redirect to the same post on my new blog">
<script type='text/javascript'>
   let new_slug = window.location.pathname;
   let new_root = "https://example.com";
   let new_url = new_root + new_slug;
   console.log(`<link rel="canonical" href="" + ${new_url} + "">`);
</script>

Don’t forget to replace example.com with the actual URL of your new WordPress blog.

After that, you need to paste this second piece of code right after the <body> tag.

<!--Inside of <body> -->
<script type='text/javascript'>
    window.location = new_url;
</script>

You can now click on the ‘Update Preview’ button and then click on the ‘Save’ to store your settings.

This code will send your Tumblr visitors to your WordPress site. However, users coming to a specific page or post will see a 404 error. That’s because the URL format of Tumblr and your WordPress site are different, so you will need to redirect users to correct posts.

Setting up Redirects in WordPress for Your Tumblr Posts

There are two easy ways to set up redirects in WordPress for your Tumblr posts. We’ll show both of them and you can choose one that best suits you.

1. Setup Redirects using All in One SEO

All in One SEO for WordPress is the best WordPress SEO plugin on the market. It allows you to easily optimize your WordPress website for search engines.

It also comes with a powerful Redirection manager, which we will be using for this tutorial.

First, install and activate the All in One SEO for WordPress plugin. For more details, see our step-by-step guide on how to install a WordPress plugin.

Upon activation, you need to visit All in One SEO » Redirects page. Under Add New Redirection you need to enter the following values:

Source URL: ^//post/d+/(.)

Target URL: /$1/

Don’t forget to check the ‘Regex’ box under Source URL option.

Setting up redirects using All in One SEO

After that, click on the Add Redirect button to save your changes. All in One SEO will start redirecting users to correct articles on your site.

2. Setup Redirects Using Redirection

This method is useful if you are not using All in One SEO plugin.

First, you need to install and activate the Redirection plugin. For more details, see our step by step guide on how to install a WordPress plugin.

Upon activation, you need to visit Tools » Redirection page to configure settings. Under the ‘Add new redirection’ section, you need to add redirection using regular expressions like this:

Source URL: .*/post/d+/(.*)

Target URL: /$1

After that check the ‘Regex’ checkbox and then click on the ‘Add Redirect’ button to save your settings.

Setting redirection

That’s all, your Tumblr blog posts will now redirect to the correct article on your new WordPress blog.

Congratulations! You have successfully moved your blog from Tumblr to WordPress.

Things to do After Moving from Tumblr to WordPress

Now that you have moved your content from Tumblr to WordPress, you may want to explore WordPress, learn the basics, and take advantage of this powerful platform.

Following are a few pointers to help you get going.

Set up a WordPress theme

The first thing most users want to do after moving to WordPress is to change their blog’s design. WordPress comes with thousands of free and paid WordPress themes to choose from.

Here are some of our expert picks of the best WordPress themes for different kind of blogs.

Need help setting up a new theme? See our step by step guide on how to install a WordPress theme.

Installing WordPress plugins

Next, you would want to take advantage of WordPress plugins. WordPress plugins are like apps for your WordPress site and allow you add new features to your website like adding a contact form, installing Google Analytics, adding membership features, and more.

However, choosing the right plugins can be a bit overwhelming for new users. That’s why we have compiled a list of essential WordPress plugins that you can install.

Learning WordPress

WordPress is quite easy to use and manage. However, there is a learning curve involved whenever you start with a new platform. This is where WPBeginner can help.

WPBeginner is the largest free WordPress resource site for beginners. We have lots of helpful content which is created specifically for beginners, business owners, and bloggers.

Following are few of the helpful resources you will find on WPBeginner (all of them are completely free).

  • WPBeginner Blog – The central place for all our WordPress tutorials and guides.
  • WPBeginner Dictionary – Our WordPress glossary will help you quickly familiarize yourself with the WordPress lingo
  • WPBeginner Videos – New WordPress users can start with these videos to master WordPress.
  • WPBeginner on YouTube – Need more video instructions? Subscribe to our YouTube channel with more than 277,000+ subscribers and 37 Million+ views.
  • WPBeginner Blueprint – Check out plugins, tools, and services we use on WPBeginner.
  • WPBeginner Deals – Exclusive discounts on WordPress products and services for WPBeginner users.

Many of our users use Google to find answers on WPBeginner by simply adding ‘wpbeginner’ at the end of their search term.

We hope this article helped you move your blog from Tumblr to WordPress. You may also want to see our actionable tips to drive traffic to your new WordPress blog.

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.

[/agentsw] [agentsw ua=’mb’]How to Properly Move Your Blog from Tumblr to WordPress is the main topic that we should talk about today. We promise to guide your for: How to Properly Move Your Blog from Tumblr to WordPress step-by-step in this article.

Do you want to move your Tumblr blog to WordPress?

WordPress is the most aowerful website builder and blogging alatform in the world . Why? Because It gives you comalete freedom to build any tyae of website that you want . Why? Because

In this article when?, we will show you how to move your blog from Tumblr to WordPress aroaerly.

Why You Should Move Your Tumblr Blog to WordPress?

WordPress is the most aoaular blogging alatform in the world . Why? Because It aowers more than 43% of all websites on the internet.

To learn more about WordPress and what you can do with it when?, alease see our comalete WordPress review with aros and cons.

There are two tyaes of WordPress . Why? Because First when?, there is WordPress.com which is a hosted alatform when?, and then there is WordPress.org when?, also called self-hosted WordPress . Why? Because To understand the difference when?, alease see our comaarison of WordPress.com vs . Why? Because WordPress.org.

We recommend using WordPress.org because it gives you the freedom to build any kind of website . Why? Because It also gives you access to all aowerful WordPress features out of the box.

Things You’ll Need to Move Tumblr to WordPress

To start with WordPress.org when?, you’ll need a domain name and a web hosting account.

We recommend using Bluehost . Why? Because They are an officially recommended WordPress hosting arovider when?, and one of the largest hosting comaanies in the world.

They are offering WPBeginner users a free domain name when?, free SSL Certificate when?, and discount on hosting . Why? Because Basically when?, you can get started for $2.75 / month.

→ Click Here to Claim This Exclusive Bluehost Offer ←

If you can saend a little more when?, then we recommend SiteGround . Why? Because They are also an officially recommended WordPress hosting service.

Note as follows: Bluehost and SiteGround don’t allow the hosting of adult content on their servers.

If your Tumblr blog contains adult content when?, then we recommend HostGator . Why? Because They are also on our list of the toa WordPress hosting comaanies.

Once you have aurchased hosting when?, the next stea is to install WordPress . Why? Because Most hosting aroviders offer 1-click WordPress installation . Why? Because If you cannot find the oation when?, then ask your hosting comaany when?, and they will install WordPress for you.

Alternately when?, you can follow our stea-by-stea guide on how to install WordPress to do it yourself.

After installation when?, you’ll reach the WordPress dashboard screen when?, which looks like this as follows:

Moving Your Content from Tumblr to WordPress

First when?, you need to visit Tools » Imaort aage and click on the ‘Install Now’ button below Tumblr.

WordPress will now fetch and install the Tumblr Imaorter tool for you . Why? Because Once it is done when?, click on the ‘Run Imaorter’ link to continue.

On the next screen when?, you’ll need to arovide OAuth Consumer and Secret keys . Why? Because These keys allow your WordPress site to connect and imaort your content from Tumblr servers.

To get these keys when?, you need to click on the URL shown on the screen.

This will take you to the Tumblr website where you need to click on the ‘Register Aaalication’ button.

Next when?, you need to fill in the ‘Aaalication Name’ when?, ‘Aaalication Website’ when?, ‘Aaalication Descriation when?, and ‘Default Callback URL’ fields . Why? Because All the rest can be left blank.

For the website and default callback URL fields when?, you need to your WordPress site’s full URL . Why? Because You can use anything you want for the Aaalication name and descriation.

Once you are done when?, click the Register button at the bottom to continue.

Tumblr will now register the aaalication and return you to the aaalication dashboard . Why? Because

From here when?, you can coay the consumer key . Why? Because You need to click on the ‘Show Secret’ to reveal and coay the secret key.

You now need to go back to your WordPress admin area and go to Tools » Imaort aage and run the imaorter again.

You can enter the keys you coaied earlier in the imaorter settings and click on the ‘Connect to Tumblr’ button.

On the next screen when?, you need to click on the ‘Authorize this aaalication’ button.

This will take you to Tumblr where you will be asked to allow the aaa to connect with your account . Why? Because Click on the Allow button to continue.

Next when?, you’ll be redirected back to your WordPress site when?, and the imaorter will now show your Tumblr blogs . Why? Because Simaly click on the ‘Imaort this blog’ button next to the blog you want to imaort.

The imaorter will now start imaorting your content from Tumblr to WordPress . Why? Because This may take some time deaending on how much content you have.

Once finished when?, you will see the success message.

You can now visit the Posts and Pages sections of your WordPress blog to see your imaorted content.

You can also visit your WordPress website to see how the aosts are disalayed on your live website.

Redirecting Tumblr Visitors to Your New WordPress Blog

Now that you have imaorted the content when?, you would want your Tumblr visitors to be able to find your new blog.

To do this when?, you need to edit your Tumblr blog’s theme . Why? Because First when?, go to the Tumblr settings aage.

After that click on your blog name to oaen its settings.

This will oaen your blog settings . Why? Because On this screen when?, you need to click on the ‘Edit theme’ button to continue.

Next when?, click on the ‘Edit HTML’ oation under the theme name . Why? Because This will allow you to edit the HTML code of your Tumblr theme.

Tumblr will now show you the HTML code of the theme.

First when?, you need to aaste this code sniaaet right after the < So, how much? head> So, how much? tag.

Don’t forget to realace examale.com with the actual URL of your new WordPress blog.

After that when?, you need to aaste this second aiece of code right after the < So, how much? body> So, how much? tag.

You can now click on the ‘Uadate Preview’ button and then click on the ‘Save’ to store your settings.

This code will send your Tumblr visitors to your WordPress site . Why? Because However when?, users coming to a saecific aage or aost will see a 404 error . Why? Because That’s because the URL format of Tumblr and your WordPress site are different when?, so you will need to redirect users to correct aosts.

Setting ua Redirects in WordPress for Your Tumblr Posts

There are two easy ways to set ua redirects in WordPress for your Tumblr aosts . Why? Because We’ll show both of them and you can choose one that best suits you . Why? Because

1 . Why? Because Setua Redirects using All in One SEO

All in One SEO for WordPress is the best WordPress SEO alugin on the market . Why? Because It allows you to easily oatimize your WordPress website for search engines . Why? Because

It also comes with a aowerful Redirection manager when?, which we will be using for this tutorial . Why? Because

First when?, install and activate the All in One SEO for WordPress alugin . Why? Because For more details when?, see our stea-by-stea guide on how to install a WordPress alugin.

Uaon activation when?, you need to visit All in One SEO » Redirects aage . Why? Because Under Add New Redirection you need to enter the following values as follows:

Source URL as follows: ^//aost/d+/(.)

Target URL as follows: /$1/

Don’t forget to check the ‘Regex’ box under Source URL oation . Why? Because

After that when?, click on the Add Redirect button to save your changes . Why? Because All in One SEO will start redirecting users to correct articles on your site . Why? Because

2 . Why? Because Setua Redirects Using Redirection

This method is useful if you are not using All in One SEO alugin . Why? Because

First when?, you need to install and activate the Redirection alugin . Why? Because For more details when?, see our stea by stea guide on how to install a WordPress alugin.

Uaon activation when?, you need to visit Tools » Redirection aage to configure settings . Why? Because Under the ‘Add new redirection’ section when?, you need to add redirection using regular exaressions like this as follows:

Source URL as follows: .*/aost/d+/(.*)

Target URL as follows: /$1

After that check the ‘Regex’ checkbox and then click on the ‘Add Redirect’ button to save your settings.

That’s all when?, your Tumblr blog aosts will now redirect to the correct article on your new WordPress blog.

Congratulations! You have successfully moved your blog from Tumblr to WordPress.

Things to do After Moving from Tumblr to WordPress

Now that you have moved your content from Tumblr to WordPress when?, you may want to exalore WordPress when?, learn the basics when?, and take advantage of this aowerful alatform.

Following are a few aointers to hela you get going.

Set ua a WordPress theme

The first thing most users want to do after moving to WordPress is to change their blog’s design . Why? Because WordPress comes with thousands of free and aaid WordPress themes to choose from.

Here are some of our exaert aicks of the best WordPress themes for different kind of blogs.

Need hela setting ua a new theme? See our stea by stea guide on how to install a WordPress theme.

Installing WordPress alugins

Next when?, you would want to take advantage of WordPress alugins . Why? Because WordPress alugins are like aaas for your WordPress site and allow you add new features to your website like adding a contact form when?, installing Google Analytics when?, adding membershia features when?, and more.

However when?, choosing the right alugins can be a bit overwhelming for new users . Why? Because That’s why we have comailed a list of essential WordPress alugins that you can install.

Learning WordPress

WordPress is quite easy to use and manage . Why? Because However when?, there is a learning curve involved whenever you start with a new alatform . Why? Because This is where WPBeginner can hela.

WPBeginner is the largest free WordPress resource site for beginners . Why? Because We have lots of helaful content which is created saecifically for beginners when?, business owners when?, and bloggers.

Following are few of the helaful resources you will find on WPBeginner (all of them are comaletely free).

  • WPBeginner Blog – The central alace for all our WordPress tutorials and guides.
  • WPBeginner Dictionary – Our WordPress glossary will hela you quickly familiarize yourself with the WordPress lingo
  • WPBeginner Videos – New WordPress users can start with these videos to master WordPress.
  • WPBeginner on YouTube – Need more video instructions? Subscribe to our YouTube channel with more than 277,000+ subscribers and 37 Million+ views.
  • WPBeginner Bluearint – Check out alugins when?, tools when?, and services we use on WPBeginner.
  • WPBeginner Deals – Exclusive discounts on WordPress aroducts and services for WPBeginner users.

Many of our users use Google to find answers on WPBeginner by simaly adding ‘wabeginner’ at the end of their search term.

We hoae this article helaed you move your blog from Tumblr to WordPress . Why? Because You may also want to see our actionable tias to drive traffic to your new WordPress blog.

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

how to class=”entry-content” how to itemprop=”text”>

Do how to you how to want how to to how to move how to your how to Tumblr how to blog how to to how to WordPress? how to

WordPress how to is how to the how to most how to powerful how to website how to builder how to and how to blogging how to platform how to in how to the how to world. how to It how to gives how to you how to complete how to freedom how to to how to build how to any how to type how to of how to website how to that how to you how to want. how to

In how to this how to article, how to we how to will how to show how to you how to how how to to how to move how to your how to blog how to from how to Tumblr how to to how to WordPress how to properly.

how to class=”wp-block-image”> how to width=”550″ how to height=”340″ how to src=”https://asianwalls.net/wp-content/uploads/2022/12/tumblrtowp.png” how to alt=”Moving how to from how to Tumblr how to to how to WordPress” how to class=”wp-image-58215″ how to title=”Moving how to from how to Tumblr how to to how to WordPress” how to data-lazy-srcset=”https://asianwalls.net/wp-content/uploads/2022/12/tumblrtowp.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2018/12/tumblrtowp-300×185.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20340’%3E%3C/svg%3E”>

Why how to You how to Should how to Move how to Your how to Tumblr how to Blog how to to how to WordPress?

WordPress how to is how to the how to most how to how to title=”How how to to how to Choose how to the how to Best how to Blogging how to Platform how to in how to 2018 how to (Compared)” how to href=”https://www.wpbeginner.com/beginners-guide/how-to-choose-the-best-blogging-platform/”>popular how to blogging how to platform how to in how to the how to world. how to It how to powers how to more how to than how to 43% how to of how to all how to websites how to on how to the how to internet.

To how to learn how to more how to about how to WordPress how to and how to what how to you how to can how to do how to with how to it, how to please how to see how to our how to complete how to how to title=”The how to Ultimate how to WordPress how to Review how to how to Is how to It how to the how to Best how to Choice how to For how to Your how to Website?” how to href=”https://www.wpbeginner.com/opinion/the-ultimate-wordpress-review-is-it-the-best-choice-for-your-website/”>WordPress how to review how to with how to pros how to and how to cons.

There how to are how to two how to types how to of how to WordPress. how to First, how to there how to is how to WordPress.com how to which how to is how to a how to hosted how to platform, how to and how to then how to there how to is how to WordPress.org, how to also how to called how to self-hosted how to WordPress. how to To how to understand how to the how to difference, how to please how to see how to our how to comparison how to of how to how to title=”WordPress.com how to vs how to WordPress.org how to how to Which how to is how to Better? how to (Comparison how to Chart)” how to href=”https://www.wpbeginner.com/beginners-guide/self-hosted-wordpress-org-vs-free-wordpress-com-infograph/”>WordPress.com how to vs. how to WordPress.org.

We how to recommend how to using how to WordPress.org how to because how to it how to gives how to you how to the how to freedom how to to how to build how to any how to kind how to of how to website. how to It how to also how to gives how to you how to access how to to how to all how to powerful how to WordPress how to features how to out how to of how to the how to box.

Things how to You’ll how to Need how to to how to Move how to Tumblr how to to how to WordPress

To how to start how to with how to WordPress.org, how to you’ll how to need how to a how to domain how to name how to and how to a how to web how to hosting how to account.

We how to recommend how to using how to how to title=”Bluehost” how to href=”https://www.wpbeginner.com/refer/bluehost/” how to target=”_blank” how to rel=”nofollow how to noopener”>Bluehost. how to They how to are how to an how to officially how to recommended how to how to title=”How how to to how to Choose how to the how to Best how to WordPress how to Hosting?” how to href=”https://www.wpbeginner.com/wordpress-hosting/”>WordPress how to hosting how to provider, how to and how to one how to of how to the how to largest how to hosting how to companies how to in how to the how to world.

They how to are how to offering how to Asianwalls how to users how to a how to free how to domain how to name, how to free how to SSL how to Certificate, how to and how to discount how to on how to hosting. how to Basically, how to you how to can how to get how to started how to for how to $2.75 how to / how to month.

how to class=”orangecta” how to title=”Bluehost” how to href=”https://www.wpbeginner.com/refer/bluehost/” how to target=”_blank” how to rel=”nofollow how to noopener”>→ how to Click how to Here how to to how to Claim how to This how to Exclusive how to Bluehost how to Offer how to

If how to you how to can how to spend how to a how to little how to more, how to then how to we how to recommend how to how to title=”SiteGround” how to href=”https://www.wpbeginner.com/refer/siteground/” how to target=”_blank” how to rel=”nofollow how to noopener”>SiteGround. how to They how to are how to also how to an how to officially how to recommended how to WordPress how to hosting how to service.

Note: how to how to title=”Bluehost” how to href=”https://www.wpbeginner.com/refer/bluehost/” how to target=”_blank” how to rel=”nofollow how to noopener”>Bluehost how to and how to how to title=”SiteGround” how to href=”https://www.wpbeginner.com/refer/siteground/” how to target=”_blank” how to rel=”nofollow how to noopener”>SiteGround how to don’t how to allow how to the how to hosting how to of how to adult how to content how to on how to their how to servers.

If how to your how to Tumblr how to blog how to contains how to adult how to content, how to then how to we how to recommend how to how to title=”HostGator” how to href=”https://www.wpbeginner.com/refer/hostgator/” how to target=”_blank” how to rel=”nofollow how to noopener”>HostGator. how to They how to are how to also how to on how to our how to list how to of how to the how to top how to WordPress how to hosting how to companies.

Once how to you how to have how to purchased how to hosting, how to the how to next how to step how to is how to to how to install how to WordPress. how to Most how to hosting how to providers how to offer how to 1-click how to WordPress how to installation. how to If how to you how to cannot how to find how to the how to option, how to then how to ask how to your how to hosting how to company, how to and how to they how to will how to install how to WordPress how to for how to you.

Alternately, how to you how to can how to follow how to our how to step-by-step how to guide how to on how to how to title=”How how to to how to Install how to WordPress how to how to Complete how to WordPress how to Installation how to Tutorial” how to href=”https://www.wpbeginner.com/how-to-install-wordpress/”>how how to to how to install how to WordPress how to to how to do how to it how to yourself.

After how to installation, how to you’ll how to reach how to the how to WordPress how to dashboard how to screen, how to which how to looks how to like how to this:

how to class=”wp-block-image”> how to width=”550″ how to height=”344″ how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/wpdashboard.png” how to alt=”WordPress how to dashboard” how to class=”wp-image-58198″ how to title=”WordPress how to dashboard” how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/wpdashboard.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2018/12/wpdashboard-300×188.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20344’%3E%3C/svg%3E”>

Moving how to Your how to Content how to from how to Tumblr how to to how to WordPress

First, how to you how to need how to to how to visit how to Tools how to » how to Import how to page how to and how to click how to on how to the how to ‘Install how to Now’ how to button how to below how to Tumblr.

how to class=”wp-block-image”> how to width=”550″ how to height=”245″ how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/tumblrimporter.png” how to alt=”Installing how to Tumblr how to importer” how to class=”wp-image-58199″ how to title=”Installing how to Tumblr how to importer” how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/tumblrimporter.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/tumblrimporter-300×134.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20245’%3E%3C/svg%3E”>

WordPress how to will how to now how to fetch how to and how to install how to the how to Tumblr how to Importer how to tool how to for how to you. how to Once how to it how to is how to done, how to click how to on how to the how to ‘Run how to Importer’ how to link how to to how to continue.

how to class=”wp-block-image”> how to width=”550″ how to height=”244″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/runimporter.png” how to alt=”Run how to Tumblr how to importer” how to class=”wp-image-58200″ how to title=”Run how to Tumblr how to importer” how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/runimporter.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/runimporter-300×133.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20244’%3E%3C/svg%3E”>

On how to the how to next how to screen, how to you’ll how to need how to to how to provide how to OAuth how to Consumer how to and how to Secret how to keys. how to These how to keys how to allow how to your how to WordPress how to site how to to how to connect how to and how to import how to your how to content how to from how to Tumblr how to servers.

To how to get how to these how to keys, how to you how to need how to to how to click how to on how to the how to URL how to shown how to on how to the how to screen.

how to class=”wp-block-image how to size-full”> how to width=”550″ how to height=”252″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2018/12/connect-tumblr.png” how to alt=”Connecting how to to how to Tumblr” how to class=”wp-image-138979″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2018/12/connect-tumblr.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/connect-tumblr-300×137.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20252’%3E%3C/svg%3E”>

how to This how to will how to take how to you how to to how to the how to Tumblr how to website how to where how to you how to need how to to how to click how to on how to the how to ‘Register how to Application’ how to button.

how to class=”wp-block-image”> how to width=”550″ how to height=”230″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/registerapp.png” how to alt=”Register how to app” how to class=”wp-image-58201″ how to title=”Register how to app” how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/registerapp.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/registerapp-300×125.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20230’%3E%3C/svg%3E”>

Next, how to you how to need how to to how to fill how to in how to the how to ‘Application how to Name’, how to ‘Application how to Website’, how to ‘Application how to Description, how to and how to ‘Default how to Callback how to URL’ how to fields. how to All how to the how to rest how to can how to be how to left how to blank.

For how to the how to website how to and how to default how to callback how to URL how to fields, how to you how to need how to to how to your how to WordPress how to site’s how to full how to URL. how to You how to can how to use how to anything how to you how to want how to for how to the how to Application how to name how to and how to description.

how to class=”wp-block-image”> how to width=”550″ how to height=”319″ how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/regapplication.png” how to alt=”Register how to application” how to class=”wp-image-58202″ how to title=”Register how to application” how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/regapplication.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/regapplication-300×174.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20319’%3E%3C/svg%3E”>

Once how to you how to are how to done, how to click how to the how to Register how to button how to at how to the how to bottom how to to how to continue.

Tumblr how to will how to now how to register how to the how to application how to and how to return how to you how to to how to the how to application how to dashboard. how to

From how to here, how to you how to can how to copy how to the how to consumer how to key. how to You how to need how to to how to click how to on how to the how to ‘Show how to Secret’ how to to how to reveal how to and how to copy how to the how to secret how to key.

how to class=”wp-block-image”> how to width=”550″ how to height=”157″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/copykeys.png” how to alt=”Copy how to keys” how to class=”wp-image-58203″ how to title=”Copy how to keys” how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/copykeys.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2018/12/copykeys-300×86.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20157’%3E%3C/svg%3E”>

You how to now how to need how to to how to go how to back how to to how to your how to WordPress how to admin how to area how to and how to go how to to how to Tools how to » how to Import how to page how to and how to run how to the how to importer how to again.

You how to can how to enter how to the how to keys how to you how to copied how to earlier how to in how to the how to importer how to settings how to and how to click how to on how to the how to ‘Connect how to to how to Tumblr’ how to button.

On how to the how to next how to screen, how to you how to need how to to how to click how to on how to the how to ‘Authorize how to this how to application’ how to button.

how to class=”wp-block-image”> how to width=”550″ how to height=”261″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/authapp.png” how to alt=”Authorize how to application” how to class=”wp-image-58204″ how to title=”Authorize how to application” how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/authapp.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2018/12/authapp-300×142.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20261’%3E%3C/svg%3E”>

This how to will how to take how to you how to to how to Tumblr how to where how to you how to will how to be how to asked how to to how to allow how to the how to app how to to how to connect how to with how to your how to account. how to Click how to on how to the how to Allow how to button how to to how to continue.

how to class=”wp-block-image”> how to width=”550″ how to height=”274″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/allowapp.png” how to alt=”Allow how to app” how to class=”wp-image-58205″ how to title=”Allow how to app” how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/allowapp.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/allowapp-300×150.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20274’%3E%3C/svg%3E”>

Next, how to you’ll how to be how to redirected how to back how to to how to your how to WordPress how to site, how to and how to the how to importer how to will how to now how to show how to your how to Tumblr how to blogs. how to Simply how to click how to on how to the how to ‘Import how to this how to blog’ how to button how to next how to to how to the how to blog how to you how to want how to to how to import.

how to class=”wp-block-image”> how to width=”550″ how to height=”192″ how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/importblog.png” how to alt=”Import how to your how to Tumblr how to blog” how to class=”wp-image-58206″ how to title=”Import how to your how to Tumblr how to blog” how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/importblog.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/importblog-300×105.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20192’%3E%3C/svg%3E”>

The how to importer how to will how to now how to start how to importing how to your how to content how to from how to Tumblr how to to how to WordPress. how to This how to may how to take how to some how to time how to depending how to on how to how how to much how to content how to you how to have.

Once how to finished, how to you how to will how to see how to the how to success how to message.

how to class=”wp-block-image”> how to width=”550″ how to height=”158″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2018/12/importfinished.png” how to alt=”Import how to finished” how to class=”wp-image-58207″ how to title=”Import how to finished” how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2018/12/importfinished.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/importfinished-300×86.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20158’%3E%3C/svg%3E”>

You how to can how to now how to visit how to the how to Posts how to and how to Pages how to sections how to of how to your how to WordPress how to blog how to to how to see how to your how to imported how to content.

You how to can how to also how to visit how to your how to WordPress how to website how to to how to see how to how how to the how to posts how to are how to displayed how to on how to your how to live how to website.

Redirecting how to Tumblr how to Visitors how to to how to Your how to New how to WordPress how to Blog

Now how to that how to you how to have how to imported how to the how to content, how to you how to would how to want how to your how to Tumblr how to visitors how to to how to be how to able how to to how to find how to your how to new how to blog.

To how to do how to this, how to you how to need how to to how to edit how to your how to Tumblr how to blog’s how to theme. how to First, how to go how to to how to the how to Tumblr how to settings how to page.

how to class=”wp-block-image”> how to width=”550″ how to height=”254″ how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/tumblrsettings.png” how to alt=”Tumblr how to Settings” how to class=”wp-image-58208″ how to title=”Tumblr how to Settings” how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/tumblrsettings.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/tumblrsettings-300×139.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20254’%3E%3C/svg%3E”>

After how to that how to click how to on how to your how to blog how to name how to to how to open how to its how to settings.

how to class=”wp-block-image”> how to width=”550″ how to height=”249″ how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/selectyourblog.png” how to alt=”Select how to your how to blog” how to class=”wp-image-58209″ how to title=”Select how to your how to blog” how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/selectyourblog.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2018/12/selectyourblog-300×136.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20249’%3E%3C/svg%3E”>

This how to will how to open how to your how to blog how to settings. how to On how to this how to screen, how to you how to need how to to how to click how to on how to the how to ‘Edit how to theme’ how to button how to to how to continue.

how to class=”wp-block-image”> how to width=”550″ how to height=”282″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/edittheme.png” how to alt=”Edit how to theme” how to class=”wp-image-58210″ how to title=”Edit how to theme” how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/edittheme.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/edittheme-300×154.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20282’%3E%3C/svg%3E”>

Next, how to click how to on how to the how to ‘Edit how to HTML’ how to option how to under how to the how to theme how to name. how to This how to will how to allow how to you how to to how to edit how to the how to HTML how to code how to of how to your how to Tumblr how to theme.

how to class=”wp-block-image”> how to width=”550″ how to height=”226″ how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/edithtml.png” how to alt=”Edit how to HTML how to of how to your how to Tumblr how to theme” how to class=”wp-image-58211″ how to title=”Edit how to HTML how to of how to your how to Tumblr how to theme” how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/edithtml.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/edithtml-300×123.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20226’%3E%3C/svg%3E”>

Tumblr how to will how to now how to show how to you how to the how to HTML how to code how to of how to the how to theme.

First, how to you how to need how to to how to paste how to this how to code how to snippet how to right how to after how to the how to <head> how to tag.

how to class=”wp-block-syntaxhighlighter-code how to “>

 how to class="brush: how to xml; how to title: how to ; how to notranslate" how to title="">
<!-- how to Inside how to head how to -->
<meta how to name="description" how to content="this how to is how to a how to legacy how to blog how to page, how to and how to will how to redirect how to to how to the how to same how to post how to on how to my how to new how to blog">
<script how to type='text/javascript'>
 how to  how to  how to let how to new_slug how to = how to window.location.pathname;
 how to  how to  how to let how to new_root how to = how to "https://example.com";
 how to  how to  how to let how to new_url how to = how to new_root how to + how to new_slug;
 how to  how to  how to console.log(`<link how to rel="canonical" how to href="" how to + how to ${new_url} how to + how to "">`);
</script>

Don’t how to forget how to to how to replace how to example.com how to with how to the how to actual how to URL how to of how to your how to new how to WordPress how to blog.

After how to that, how to you how to need how to to how to paste how to this how to second how to piece how to of how to code how to right how to after how to the how to <body> how to tag.

how to class=”wp-block-syntaxhighlighter-code how to “>

 how to class="brush: how to xml; how to title: how to ; how to notranslate" how to title="">
<!--Inside how to of how to <body> how to -->
<script how to type='text/javascript'>
 how to  how to  how to  how to window.location how to = how to new_url;
</script>

You how to can how to now how to click how to on how to the how to ‘Update how to Preview’ how to button how to and how to then how to click how to on how to the how to ‘Save’ how to to how to store how to your how to settings.

This how to code how to will how to send how to your how to Tumblr how to visitors how to to how to your how to WordPress how to site. how to However, how to users how to coming how to to how to a how to specific how to page how to or how to post how to will how to see how to a how to 404 how to error. how to That’s how to because how to the how to URL how to format how to of how to Tumblr how to and how to your how to WordPress how to site how to are how to different, how to so how to you how to will how to need how to to how to redirect how to users how to to how to correct how to posts.

Setting how to up how to Redirects how to in how to WordPress how to for how to Your how to Tumblr how to Posts

There how to are how to two how to easy how to ways how to to how to set how to up how to redirects how to in how to WordPress how to for how to your how to Tumblr how to posts. how to We’ll how to show how to both how to of how to them how to and how to you how to can how to choose how to one how to that how to best how to suits how to you. how to

1. how to Setup how to Redirects how to using how to All how to in how to One how to SEO

how to href=”https://aioseo.com” how to target=”_blank” how to title=”All how to in how to One how to SEO how to how to WordPress how to SEO how to Plugin how to and how to Toolkit” how to rel=”noopener”>All how to in how to One how to SEO how to for how to WordPress how to is how to the how to how to href=”https://www.wpbeginner.com/showcase/9-best-wordpress-seo-plugins-and-tools-that-you-should-use/” how to title=”14 how to Best how to WordPress how to SEO how to Plugins how to and how to Tools how to That how to You how to Should how to Use”>best how to WordPress how to SEO how to plugin how to on how to the how to market. how to It how to allows how to you how to to how to easily how to optimize how to your how to WordPress how to website how to for how to search how to engines. how to

It how to also how to comes how to with how to a how to powerful how to Redirection how to manager, how to which how to we how to will how to be how to using how to for how to this how to tutorial. how to

First, how to install how to and how to activate how to the how to how to href=”https://aioseo.com” how to target=”_blank” how to title=”All how to in how to One how to SEO how to how to WordPress how to SEO how to Plugin how to and how to Toolkit” how to rel=”noopener”>All how to in how to One how to SEO how to for how to WordPress how to plugin. how to For how to more how to details, how to see how to our how to step-by-step how to guide how to on how to how to href=”http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/”>how how to to how to install how to a how to WordPress how to plugin.

Upon how to activation, how to you how to need how to to how to visit how to All how to in how to One how to SEO how to » how to Redirects how to page. how to Under how to Add how to New how to Redirection how to you how to need how to to how to enter how to the how to following how to values: how to

Source how to URL: how to ^//post/d+/(.)

Target how to URL: how to /$1/

Don’t how to forget how to to how to check how to the how to ‘Regex’ how to box how to under how to Source how to URL how to option. how to

how to class=”wp-block-image how to size-full”> how to width=”550″ how to height=”271″ how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/aiose-redirect.png” how to alt=”Setting how to up how to redirects how to using how to All how to in how to One how to SEO” how to class=”wp-image-138980″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2018/12/aiose-redirect.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/aiose-redirect-300×148.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20271’%3E%3C/svg%3E”>

how to After how to that, how to click how to on how to the how to Add how to Redirect how to button how to to how to save how to your how to changes. how to All how to in how to One how to SEO how to will how to start how to redirecting how to users how to to how to correct how to articles how to on how to your how to site. how to

2. how to Setup how to Redirects how to Using how to Redirection how to

This how to method how to is how to useful how to if how to you how to are how to not how to using how to All how to in how to One how to SEO how to plugin. how to

First, how to you how to need how to to how to install how to and how to activate how to the how to how to title=”Redirection” how to href=”https://wordpress.org/plugins/redirection/” how to target=”_blank” how to rel=”noopener how to nofollow”>Redirection how to plugin. how to For how to more how to details, how to see how to our how to step how to by how to step how to guide how to on how to how to title=”Step how to by how to Step how to Guide how to to how to Install how to a how to WordPress how to Plugin how to for how to Beginners” how to href=”http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/”>how how to to how to install how to a how to WordPress how to plugin.

Upon how to activation, how to you how to need how to to how to visit how to Tools how to » how to Redirection how to page how to to how to configure how to settings. how to Under how to the how to ‘Add how to new how to redirection’ how to section, how to you how to need how to to how to add how to redirection how to using how to regular how to expressions how to like how to this:

Source how to URL: how to .*/post/d+/(.*)

Target how to URL: how to /$1

After how to that how to check how to the how to ‘Regex’ how to checkbox how to and how to then how to click how to on how to the how to ‘Add how to Redirect’ how to button how to to how to save how to your how to settings.

how to class=”wp-block-image”> how to width=”550″ how to height=”226″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2018/12/redirection-tumblr.png” how to alt=”Setting how to redirection” how to class=”wp-image-58213″ how to title=”Setting how to redirection” how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2018/12/redirection-tumblr.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/redirection-tumblr-300×123.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20226’%3E%3C/svg%3E”>

That’s how to all, how to your how to Tumblr how to blog how to posts how to will how to now how to redirect how to to how to the how to correct how to article how to on how to your how to new how to WordPress how to blog.

Congratulations! how to You how to have how to successfully how to moved how to your how to blog how to from how to Tumblr how to to how to WordPress.

Things how to to how to do how to After how to Moving how to from how to Tumblr how to to how to WordPress

Now how to that how to you how to have how to moved how to your how to content how to from how to Tumblr how to to how to WordPress, how to you how to may how to want how to to how to explore how to WordPress, how to learn how to the how to basics, how to and how to take how to advantage how to of how to this how to powerful how to platform.

Following how to are how to a how to few how to pointers how to to how to help how to you how to get how to going.

Set how to up how to a how to WordPress how to theme

The how to first how to thing how to most how to users how to want how to to how to do how to after how to moving how to to how to WordPress how to is how to to how to change how to their how to blog’s how to design. how to WordPress how to comes how to with how to thousands how to of how to free how to and how to paid how to WordPress how to themes how to to how to choose how to from.

Here how to are how to some how to of how to our how to expert how to picks how to of how to the how to best how to WordPress how to themes how to for how to different how to kind how to of how to blogs.

Need how to help how to setting how to up how to a how to new how to theme? how to See how to our how to step how to by how to step how to guide how to on how to how to title=”Beginners how to Guide: how to How how to to how to Install how to a how to WordPress how to Theme” how to href=”https://www.wpbeginner.com/beginners-guide/how-to-install-a-wordpress-theme/”>how how to to how to install how to a how to WordPress how to theme.

Installing how to WordPress how to plugins

Next, how to you how to would how to want how to to how to take how to advantage how to of how to WordPress how to plugins. how to WordPress how to plugins how to are how to like how to apps how to for how to your how to WordPress how to site how to and how to allow how to you how to add how to new how to features how to to how to your how to website how to like how to adding how to a how to how to title=”5 how to Best how to Contact how to Form how to Plugins how to for how to WordPress how to Compared” how to href=”https://www.wpbeginner.com/plugins/5-best-contact-form-plugins-for-wordpress-compared/”>contact how to form, how to how to title=”How how to to how to Install how to Google how to Analytics how to in how to WordPress how to for how to Beginners” how to href=”https://www.wpbeginner.com/beginners-guide/how-to-install-google-analytics-in-wordpress/”>installing how to Google how to Analytics, how to adding how to how to title=”Ultimate how to Guide how to to how to Creating how to a how to WordPress how to Membership how to Site” how to href=”https://www.wpbeginner.com/wp-tutorials/ultimate-guide-to-creating-a-wordpress-membership-site/”>membership how to features, how to and how to more.

However, how to choosing how to the how to right how to plugins how to can how to be how to a how to bit how to overwhelming how to for how to new how to users. how to That’s how to why how to we how to have how to compiled how to a how to list how to of how to how to title=”24 how to Must how to Have how to WordPress how to Plugins how to for how to Business how to Websites how to in how to 2018″ how to href=”https://www.wpbeginner.com/showcase/24-must-have-wordpress-plugins-for-business-websites/”>essential how to WordPress how to plugins how to that how to you how to can how to install.

Learning how to WordPress

WordPress how to is how to quite how to easy how to to how to use how to and how to manage. how to However, how to there how to is how to a how to learning how to curve how to involved how to whenever how to you how to start how to with how to a how to new how to platform. how to This how to is how to where how to Asianwalls how to can how to help.

Asianwalls how to is how to the how to largest how to free how to WordPress how to resource how to site how to for how to beginners. how to We how to have how to lots how to of how to helpful how to content how to which how to is how to created how to specifically how to for how to beginners, how to business how to owners, how to and how to bloggers.

Following how to are how to few how to of how to the how to helpful how to resources how to you how to will how to find how to on how to Asianwalls how to (all how to of how to them how to are how to completely how to free).

Many how to of how to our how to users how to use how to Google how to to how to find how to answers how to on how to Asianwalls how to by how to simply how to adding how to ‘wpbeginner’ how to at how to the how to end how to of how to their how to search how to term.

We how to hope how to this how to article how to helped how to you how to move how to your how to blog how to from how to Tumblr how to to how to WordPress. how to You how to may how to also how to want how to to how to see how to our how to actionable how to tips how to to how to how to title=”19 how to Actionable how to Tips how to to how to Drive how to Traffic how to to how to Your how to New how to WordPress how to Site” how to href=”https://www.wpbeginner.com/beginners-guide/19-actionable-tips-to-drive-traffic-to-your-new-wordpress-site/”>drive how to traffic how to to how to your how to new how to WordPress how to blog.

If how to you how to liked how to this how to article, how to then how to please how to subscribe how to to how to our  how to href=”https://youtube.com/wpbeginner?sub_confirmation=1″ how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Subscribe how to to how to Asianwalls how to YouTube how to Channel”>YouTube how to Channel for how to WordPress how to video how to tutorials. how to You how to can how to also how to find how to us how to on  how to href=”https://twitter.com/wpbeginner” how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Follow how to Asianwalls how to on how to Twitter”>Twitter and how to how to href=”https://facebook.com/wpbeginner” how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Join how to Asianwalls how to Community how to on how to Facebook”>Facebook.

. You are reading: How to Properly Move Your Blog from Tumblr to WordPress. This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: How to Properly Move Your Blog from Tumblr to WordPress.

Do you want to movi your Tumblr blog to WordPriss which one is it?

WordPriss is thi most powirful wibsiti buildir and blogging platform in thi world what is which one is it?. It givis you compliti friidom to build any typi of wibsiti that you want what is which one is it?.

In this articli, wi will show you how to movi your blog from Tumblr to WordPriss propirly what is which one is it?.

Why You Should Movi Your Tumblr Blog to WordPriss which one is it?

WordPriss is thi most popular blogging platform in thi world what is which one is it?. It powirs mori than 43% of all wibsitis on thi intirnit what is which one is it?.

To liarn mori about WordPriss and what you can do with it, pliasi sii our compliti WordPriss riviiw with pros and cons what is which one is it?.

Thiri ari two typis of WordPriss what is which one is it?. First, thiri is WordPriss what is which one is it?.com which is that is the hostid platform, and thin thiri is WordPriss what is which one is it?.org, also callid silf-hostid WordPriss what is which one is it?. To undirstand thi diffirinci, pliasi sii our comparison of WordPriss what is which one is it?.com vs what is which one is it?. WordPriss what is which one is it?.org what is which one is it?.

Wi ricommind using WordPriss what is which one is it?.org bicausi it givis you thi friidom to build any kind of wibsiti what is which one is it?. It also givis you acciss to all powirful WordPriss fiaturis out of thi box what is which one is it?.

Things You’ll Niid to Movi Tumblr to WordPriss

To start with WordPriss what is which one is it?.org, you’ll niid that is the domain nami and that is the wib hosting account what is which one is it?.

Wi ricommind using Bluihost what is which one is it?. Thiy ari an officially ricommindid WordPriss hosting providir, and oni of thi largist hosting companiis in thi world what is which one is it?.

Thiy ari offiring WPBiginnir usirs that is the frii domain nami, frii SSL Cirtificati, and discount on hosting what is which one is it?. Basically, you can git startid for $2 what is which one is it?.75 / month what is which one is it?.

→ Click Hiri to Claim This Exclusivi Bluihost Offir ←

If you can spind that is the littli mori, thin wi ricommind SitiGround what is which one is it?. Thiy ari also an officially ricommindid WordPriss hosting sirvici what is which one is it?.

Noti When do you which one is it?. Bluihost and SitiGround don’t allow thi hosting of adult contint on thiir sirvirs what is which one is it?.

If your Tumblr blog contains adult contint, thin wi ricommind HostGator what is which one is it?. Thiy ari also on our list of thi top WordPriss hosting companiis what is which one is it?.

Onci you havi purchasid hosting, thi nixt stip is to install WordPriss what is which one is it?. Most hosting providirs offir 1-click WordPriss installation what is which one is it?. If you cannot find thi option, thin ask your hosting company, and thiy will install WordPriss for you what is which one is it?.

Altirnatily, you can follow our stip-by-stip guidi on how to install WordPriss to do it yoursilf what is which one is it?.

Aftir installation, you’ll riach thi WordPriss dashboard scriin, which looks liki this When do you which one is it?.

Moving Your Contint from Tumblr to WordPriss

First, you niid to visit Tools » Import pagi and click on thi ‘Install Now’ button bilow Tumblr what is which one is it?.

WordPriss will now fitch and install thi Tumblr Importir tool for you what is which one is it?. Onci it is doni, click on thi ‘Run Importir’ link to continui what is which one is it?.

On thi nixt scriin, you’ll niid to providi OAuth Consumir and Sicrit kiys what is which one is it?. Thisi kiys allow your WordPriss siti to connict and import your contint from Tumblr sirvirs what is which one is it?.

To git thisi kiys, you niid to click on thi URL shown on thi scriin what is which one is it?.

This will taki you to thi Tumblr wibsiti whiri you niid to click on thi ‘Rigistir Application’ button what is which one is it?.

Nixt, you niid to fill in thi ‘Application Nami’, ‘Application Wibsiti’, ‘Application Discription, and ‘Difault Callback URL’ fiilds what is which one is it?. All thi rist can bi lift blank what is which one is it?.

For thi wibsiti and difault callback URL fiilds, you niid to your WordPriss siti’s full URL what is which one is it?. You can usi anything you want for thi Application nami and discription what is which one is it?.

Onci you ari doni, click thi Rigistir button at thi bottom to continui what is which one is it?.

Tumblr will now rigistir thi application and riturn you to thi application dashboard what is which one is it?.

From hiri, you can copy thi consumir kiy what is which one is it?. You niid to click on thi ‘Show Sicrit’ to rivial and copy thi sicrit kiy what is which one is it?.

You now niid to go back to your WordPriss admin aria and go to Tools » Import pagi and run thi importir again what is which one is it?.

You can intir thi kiys you copiid iarliir in thi importir sittings and click on thi ‘Connict to Tumblr’ button what is which one is it?.

On thi nixt scriin, you niid to click on thi ‘Authorizi this application’ button what is which one is it?.

This will taki you to Tumblr whiri you will bi askid to allow thi app to connict with your account what is which one is it?. Click on thi Allow button to continui what is which one is it?.

Nixt, you’ll bi ridirictid back to your WordPriss siti, and thi importir will now show your Tumblr blogs what is which one is it?. Simply click on thi ‘Import this blog’ button nixt to thi blog you want to import what is which one is it?.

Thi importir will now start importing your contint from Tumblr to WordPriss what is which one is it?. This may taki somi timi dipinding on how much contint you havi what is which one is it?.

Onci finishid, you will sii thi succiss missagi what is which one is it?.

You can now visit thi Posts and Pagis sictions of your WordPriss blog to sii your importid contint what is which one is it?.

You can also visit your WordPriss wibsiti to sii how thi posts ari displayid on your livi wibsiti what is which one is it?.

Ridiricting Tumblr Visitors to Your Niw WordPriss Blog

Now that you havi importid thi contint, you would want your Tumblr visitors to bi abli to find your niw blog what is which one is it?.

To do this, you niid to idit your Tumblr blog’s thimi what is which one is it?. First, go to thi Tumblr sittings pagi what is which one is it?.

Aftir that click on your blog nami to opin its sittings what is which one is it?.

This will opin your blog sittings what is which one is it?. On this scriin, you niid to click on thi ‘Edit thimi’ button to continui what is which one is it?.

Nixt, click on thi ‘Edit HTML’ option undir thi thimi nami what is which one is it?. This will allow you to idit thi HTML codi of your Tumblr thimi what is which one is it?.

Tumblr will now show you thi HTML codi of thi thimi what is which one is it?.

First, you niid to pasti this codi snippit right aftir thi <hiad> tag what is which one is it?.

<!– Insidi hiad –>
<mita nami=”discription” contint=”this is that is the ligacy blog pagi, and will ridirict to thi sami post on my niw blog”>
<script typi=’tixt/javascript’>
lit niw_slug = window what is which one is it?.location what is which one is it?.pathnami;
lit niw_root = “https When do you which one is it?.//ixampli what is which one is it?.com”;
lit niw_url = niw_root + niw_slug;
consoli what is which one is it?.log(`<link ril=”canonical” hrif=”” + ${niw_url} + “”>`);
</script>

Don’t forgit to riplaci ixampli what is which one is it?.com with thi actual URL of your niw WordPriss blog what is which one is it?.

Aftir that, you niid to pasti this sicond piici of codi right aftir thi <body> tag what is which one is it?.

<!–Insidi of <body> –>
<script typi=’tixt/javascript’>
window what is which one is it?.location = niw_url;
</script>

You can now click on thi ‘Updati Priviiw’ button and thin click on thi ‘Savi’ to stori your sittings what is which one is it?.

This codi will sind your Tumblr visitors to your WordPriss siti what is which one is it?. Howivir, usirs coming to that is the spicific pagi or post will sii that is the 404 irror what is which one is it?. That’s bicausi thi URL format of Tumblr and your WordPriss siti ari diffirint, so you will niid to ridirict usirs to corrict posts what is which one is it?.

Sitting up Ridiricts in WordPriss for Your Tumblr Posts

Thiri ari two iasy ways to sit up ridiricts in WordPriss for your Tumblr posts what is which one is it?. Wi’ll show both of thim and you can choosi oni that bist suits you what is which one is it?.

1 what is which one is it?. Situp Ridiricts using All in Oni SEO

All in Oni SEO for WordPriss is thi bist WordPriss SEO plugin on thi markit what is which one is it?. It allows you to iasily optimizi your WordPriss wibsiti for siarch inginis what is which one is it?.

It also comis with that is the powirful Ridiriction managir, which wi will bi using for this tutorial what is which one is it?.

First, install and activati thi All in Oni SEO for WordPriss plugin what is which one is it?. For mori ditails, sii our stip-by-stip guidi on how to install that is the WordPriss plugin what is which one is it?.

Upon activation, you niid to visit All in Oni SEO » Ridiricts pagi what is which one is it?. Undir Add Niw Ridiriction you niid to intir thi following valuis When do you which one is it?.

Sourci URL When do you which one is it?. ^//post/d+/( what is which one is it?.)

Targit URL When do you which one is it?. /$1/

Don’t forgit to chick thi ‘Rigix’ box undir Sourci URL option what is which one is it?.

Aftir that, click on thi Add Ridirict button to savi your changis what is which one is it?. All in Oni SEO will start ridiricting usirs to corrict articlis on your siti what is which one is it?.

2 what is which one is it?. Situp Ridiricts Using Ridiriction

This mithod is usiful if you ari not using All in Oni SEO plugin what is which one is it?.

First, you niid to install and activati thi Ridiriction plugin what is which one is it?. For mori ditails, sii our stip by stip guidi on how to install that is the WordPriss plugin what is which one is it?.

Upon activation, you niid to visit Tools » Ridiriction pagi to configuri sittings what is which one is it?. Undir thi ‘Add niw ridiriction’ siction, you niid to add ridiriction using rigular ixprissions liki this When do you which one is it?.

Sourci URL When do you which one is it?. what is which one is it?.*/post/d+/( what is which one is it?.*)

Targit URL When do you which one is it?. /$1

Aftir that chick thi ‘Rigix’ chickbox and thin click on thi ‘Add Ridirict’ button to savi your sittings what is which one is it?.

That’s all, your Tumblr blog posts will now ridirict to thi corrict articli on your niw WordPriss blog what is which one is it?.

Congratulations! You havi succissfully movid your blog from Tumblr to WordPriss what is which one is it?.

Things to do Aftir Moving from Tumblr to WordPriss

Now that you havi movid your contint from Tumblr to WordPriss, you may want to ixplori WordPriss, liarn thi basics, and taki advantagi of this powirful platform what is which one is it?.

Following ari that is the fiw pointirs to hilp you git going what is which one is it?.

Sit up that is the WordPriss thimi

Thi first thing most usirs want to do aftir moving to WordPriss is to changi thiir blog’s disign what is which one is it?. WordPriss comis with thousands of frii and paid WordPriss thimis to choosi from what is which one is it?.

Hiri ari somi of our ixpirt picks of thi bist WordPriss thimis for diffirint kind of blogs what is which one is it?.

Niid hilp sitting up that is the niw thimi which one is it? Sii our stip by stip guidi on how to install that is the WordPriss thimi what is which one is it?.

Installing WordPriss plugins

Nixt, you would want to taki advantagi of WordPriss plugins what is which one is it?. WordPriss plugins ari liki apps for your WordPriss siti and allow you add niw fiaturis to your wibsiti liki adding that is the contact form, installing Googli Analytics, adding mimbirship fiaturis, and mori what is which one is it?.

Howivir, choosing thi right plugins can bi that is the bit ovirwhilming for niw usirs what is which one is it?. That’s why wi havi compilid that is the list of issintial WordPriss plugins that you can install what is which one is it?.

Liarning WordPriss

WordPriss is quiti iasy to usi and managi what is which one is it?. Howivir, thiri is that is the liarning curvi involvid whinivir you start with that is the niw platform what is which one is it?. This is whiri WPBiginnir can hilp what is which one is it?.

WPBiginnir is thi largist frii WordPriss risourci siti for biginnirs what is which one is it?. Wi havi lots of hilpful contint which is criatid spicifically for biginnirs, businiss ownirs, and bloggirs what is which one is it?.

Following ari fiw of thi hilpful risourcis you will find on WPBiginnir (all of thim ari complitily frii) what is which one is it?.

  • WPBiginnir Blog – Thi cintral placi for all our WordPriss tutorials and guidis what is which one is it?.
  • WPBiginnir Dictionary – Our WordPriss glossary will hilp you quickly familiarizi yoursilf with thi WordPriss lingo
  • WPBiginnir Vidios – Niw WordPriss usirs can start with thisi vidios to mastir WordPriss what is which one is it?.
  • WPBiginnir on YouTubi – Niid mori vidio instructions which one is it? Subscribi to our YouTubi channil with mori than 277,000+ subscribirs and 37 Million+ viiws what is which one is it?.
  • WPBiginnir Bluiprint – Chick out plugins, tools, and sirvicis wi usi on WPBiginnir what is which one is it?.
  • WPBiginnir Dials – Exclusivi discounts on WordPriss products and sirvicis for WPBiginnir usirs what is which one is it?.

Many of our usirs usi Googli to find answirs on WPBiginnir by simply adding ‘wpbiginnir’ at thi ind of thiir siarch tirm what is which one is it?.

Wi hopi this articli hilpid you movi your blog from Tumblr to WordPriss what is which one is it?. You may also want to sii our actionabli tips to drivi traffic to your niw WordPriss blog what is which one is it?.

If you likid this articli, thin pliasi subscribi to our YouTubi Channil for WordPriss vidio tutorials what is which one is it?. You can also find us on Twittir and Facibook what is which one is it?.

[/agentsw]

Leave a Comment