Optimizing your <title> tag in WordPress

Written by Brandon Wood | Thursday, September 21st, 2006
, , ,

The <title> tag can be one of the most important when it comes to search engine optimization. It can easily mean the difference between several page ranks on most search engines.

The key thing to understand is that the keywords appearing earlier in the <title> tag are the ones that carry the most weight. This is why it is important to format your <title> tags as: post title – site name. This formatting can easily be achieved in WordPress by using the following bit of PHP code between the <head> tags:

<title>
<?php wp_title(' '); ?>
<?php if(wp_title(' ', false)) { echo '-'; } ?>
<?php bloginfo('name'); ?>
</title>

By formatting your <title> tags correctly, you should be well on your way to achieving higher search rankings (assuming you have quality content, of course!).

Share and Enjoy:
  • Twitter
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Google Bookmarks
  • StumbleUpon

Related Posts

3 Responses to “Optimizing your <title> tag in WordPress”

  1. Optimizing your <title> tag in WordPress -- brandon wood Says:

    [...] your <title> tag in WordPress. tags: Search Engine Optimization, WordPress  |  Permalink |  [...]

  2. sirjonathan Says:

    Excellent tip and implementation example, thank you for sharing :) .

  3. Blog Roundup for the 21st of September 2006 :: Christopher Ross Says:

    [...] Welcome to my blog, please feel free to subscribe to my RSS feed or leave a comment.My WordPress content in review for September 21st 2006. It was worthy to get a lot from Optimizing your tag in WordPress. [...]

Leave a Reply