Posts Tagged ‘title tag’

Five Days of Free Marketing Articles, Day Five

All this week, I’ve posted a series of links to online marketing web articles that I’ve enjoyed with the hopes that you’ll also find something useful in them. Take the time to comment below and let me know what you think and remember to comment on their website too as it will help build both your online business and theirs! 

I’ve had a couple of people email me and ask why I’ve been running this little articles this week and to be honest it’s part of an experiment I’m running on article length but it’s also been to highlight some really interesting pieces I’ve found on the web and wanted to share with my readers. 

Web Design and SEO Go Hand in Hand

I’m often asked how Search Engine Optimization works and without being an expert on the subject, what I can tell you is that SEO is about more than just adding a few keywords, as a small article on the British Computer Society website points out the optimization of your website for organic traffic starts with the design. While I was ‘across the pond’ I also came across a strange article by Nick Sommerlad on SEO spam. What I found odd about it wasn’t the article (OK that was strange too) but the comments, take a look and you’ll see what I mean … those Brit’s seem to get pretty passionate about bashing things. Search Engine Land had a feature this morning called Are You an SEO Hybrid?. The article pretty much covers my life with questions like:

  • “I didn’t hire you to redesign my site. I hired you to get my site #1 on Google.”

One article that really caught my attention today was over at addicottweb.com and it focussed on how to fix some of the problems WordPress has with SEO. I’ll admit that WordPress isn’t well optimized out of the box but I’m going to have to disagree on the solution. The two plugins he recommends (All-in-One SEO plugin SEO Title Tag plugin) are acceptable if you have no programming skills but a much better solution is to take care of the problem yourself in the code. Here’s my three simple recommendations for people who are legitimately concerned with WordPress SEO:

  1. Reorder your Title tag
  2. Use your Tags as META Keywords
  3. Use your Excerpt as META Description

This allows you to do something that neither plugin will do, control your blog. Remember that major search engines don’t care who (or how) you optimized your blog poorly, so take ownership of it and do it right or you might be making the worst mistakes you can.

Jonathan Aston wrote an interesting piece on SEO and made the point that country specific domain names are a great idea. I also wanted to point out that Dave Bascom has the funniest license plate I’ve seen in weeks and that the economy may be tanking but jobs for people in the SEO field? On the rise …

WordPress SEO Tips – The Title Tag

For anybody who cares about Search Engine Optimization (which you should if you own a website) WordPress is a great tool that takes care of most SEO problems by itself, the only significant oversight when they put it together was the TITLE tag.

There are few common mistakes most web designers make with regards to the TITLE tag, but WordPress in particular does some things that we should avoid. Let’s take a look at a few common mistakes and how to fix them in your own WP blog.

Duplicate Titles

Each TITLE tag should be unique for your website, with rich text describing the content of your blog. WordPress makes the mistake of repeating the blog title every time in the post, along with the category and then the title. For example:

thisismyurl.com | WordPress | WordPress SEO Tips – The Title Tag

That’s a surefire way to make Google think that you’re repeating the same content. What you should have for a page title is:

WordPress SEO Tips – The Title Tag

Except in the categories which should be:

thisismyurl.com | WordPress Archives

On the homepage, simply:

thisismyurl.com

If you want, you can include the site description if it’s short enough but remember to keep your site titles below 65 characters (including spaces).

What about your site name? If you really feel the need to include it in your page title, including it at the end (

WordPress SEO Tips – The Title Tag | thisismyurl.com 

) is the best.

65 Characters

Google only reads the first 65 characters of your title for it’s index, if you’re going to post longer titles you risk having them cut off in the index.

Keywords in the Title

A few years ago, there was a trend among web developers to stuff as many keywords as possible into the title. For example:

WordPress SEO Tips – The Title Tag SEO WordPress Optimizing Search Engine Optimization

Frankly, Google hires some pretty smart people so if you honestly think stuffing your titles with keywords is a good idea, you should think again. More importantly, repeating the same word or words in your title doesn’t make a difference to search engines. On the other hand, if you really wanted to make an impact try using a useful title such as:

WordPress SEO Tips – The Title Tag for Search Engine Optimization

Fixing WordPress

So now that you know a few new (and hopefully interesting) facts about how Search Engines will index your WordPress website, how do you fix it? The process is surprisingly simple, open your header.php file and change remove the existing title tag, to replace it with the code below:

<title><?php wp_title(”); ?> <?php if ( !(is_404()) && (is_single()) or (is_page()) or (is_archive()) ) { ?> | <?php } ?> <?php bloginfo(‘name’); ?></title>