How to increase you Tumblr SEO


Syndication

This post was orignally posted on Tumblr on the blog: Nerd Ramblings. View the full syndicated blog or view the original post.


Tumblr does not have very good SEO built in, compared to blog sites like Wordpress and Blogger. But you do have the option to edit the HTML, so we can increase our search rank with a bit of smart coding, and good habits.

  1. Beef up the <title> tag.
    Add the Post Summary to the Title, as its more likely to gain you search spots than the title alone.
  <title>{block:PostSummary}{PostSummary} - {/block:PostSummary}{Title}</title>
  1. Use your tags as keywords.
    Basic SEO 101, add meta keywords, but we’ll leverage off of Tumblr to dynamically add them.
  <meta name=”keywords” content=”{block:Permalink}{block:Posts}{block:Tags}{Tag}, {/block:Tags}{/block:Posts}{/block:Permalink}” />
  1. Meta it more. 
    Add meta tags for title and description. 
  <meta name=”title” content=”{block:PostSummary}{PostSummary} - {/block:PostSummary}{Title}” />
  <meta name=”description” content=”{MetaDescription}” />
  1. Upload your sitemap.xml to Google Webmaster Tools.

Tumblr builds sitemaps automatically, http://yourname.tumblr.com/sitemap.xml. Submit it to Google Webmaster Tools, Bing Webmaster and Yahoo Site Explorer.

  1. Use <h1>.
    Delve into your themes custom HTML and find the {block:Title} and replace it with this.
  {block:Title}
    <h1>{Title}</h1>
  {/block:Title}
  1. Add a social button.
    Search engines rank sites higher by the the amount of sites that link to a page, so make it easy for people to link to you.
  <!-- AddThis Button BEGIN -->
  <div class="addthis_toolbox addthis_default_style " addthis:title="{Title}" addthis:url="{Permalink}">
    <a class="addthis_button_preferred_1"></a>
    <a class="addthis_button_preferred_2"></a>
    <a class="addthis_button_preferred_3"></a>
    <a class="addthis_button_preferred_4"></a>
    <a class="addthis_button_compact"></a>
    <a class="addthis_counter addthis_bubble_style"></a>
  </div>
  <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4d9c5506633045a3"></script>
  <!-- AddThis Button END -->
  1. Piggy back on Tumblr’s limited SEO.
    Go to the http://www.tumblr.com/customize, and under Advanced, and tick Use descriptive URLs and Allow search engines to index your blog.

  2. Add Google Analytics so you can track your progress.

Follow these steps as well as good and engaging content you should have solid traffic from search engines.