Posts Tagged ‘Search Optimization’

Free Community Friendly Theme

free wordpress theme

Well it’s been a little while since I uploaded a new theme but as before, this one is fully optimized and ready to help you community or non-profit group show up in the Google rankings.

The theme design has been created as a basic, no thrills piece which can be easily added upon for most community groups, churches and non-profit organizations which are seeking an easy way to  get their website online.

I’ve included a lot of Search Engine Optimization tricks in this theme by default.

What do Search Engines Really See?

Comments Off

One of the most difficult things for the average business owner to understand is how major search engines work and what they can read from a web site. All of the holiday and hotel web sites we build here at Getaway Graphics are designed so that major search engines can properly read the content from sites.

To see what major search engines see, take a look at our free SEO checker found at seocheck.getawaygraphics.com. This tool was original designed as an internal tool for our development team to ensure quality marketing and online promotion for our clients so it’s not the prettiest tool but it gives you a great idea of what major search engines can see.

Why does it matter?

SEO (Search Engine Optimization) isn’t really about making it possible for companies like Google or MSN to find you, it’s about making it possible for people who have never heard of you to find you. If you think of major search engines as a blind person, then you begin to understand that the single most important aspect of your web site is the text you display and that by extension the better the text you display, the more people can find you.

We call it organic traffic, it’s designed to save you countless marketing dollars.

Bloody Mess of a WordPress Theme

bloody hell 288x300 Bloody Mess of a WordPress Theme image

This theme started out as a Christmas theme for WordPress but when I couldn’t find a good set of Christmas lights it all went horribly, horribly wrong. It’s based off the Free Community Friendly Theme I did earlier today so you can see how easily things can be modified.

As with my earlier themes, this one is optimized for search engine optimization.

WordPress Magazine Theme – Free Dark Version

So after I finished creating A Smashingly Good Free Magazine Theme for WordPress my first WordPress theme focused on Search Engine Optimization, I had some feedback from a couple of friends who liked it but found the theme a little effeminate. To that end I took a bit of time this weekend and put together a slightly darker version, hopefully this will inspire real men to enjoy the theme.

smashingly dark magazine theme 207x300 WordPress Magazine Theme   Free Dark Version image The theme still uses header artwork from Smashing Magazine as well as the icons. I’ve darkened the great tiling background I found online for free.

I’m not going to count this theme towards my WordPress theme focused on Search Engine Optimization but I am going to let you download it for free. If you like this theme but would like to have it customized or installed for you, why not contact me? I’m available for WordPress consulting, theme customization and freelance development.

 

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>