Home  |   Blog  |   SEO  |   About  |   éàéø áø-àåï  |  

Archive for the ‘software’ Category

Improving Wordpress SEO

Thursday, June 12th, 2008

Using WordPress? If you’re looking for SEO improvements, checkout this excellent WordPress SEO Guide. It has quite a lot of good ideas for optimizing your blog, with the relevant plugins. I would recommend doing most of it.

One of the things they didn’t mention is removing bloginfo(’name’) from header.php so that the blog name will not appear in the title of every single page on site. (If you are asking why, here is the answer)

In case you want to do it, all you need to do is edit header.php

change this code:

<title><?php bloginfo(’name’); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>

into this:

<title><?php
if ( is_single() || is_category() || is_tag())
{
wp_title(”);
}
else
{
bloginfo(’name’); ?> <?php wp_title();
}
?></title>

Warning: If your blog is active for a long time and has thousands of posts, I wouldn’t change the title for all posts. Google doesn’t like ‘big’ changes. In that case, I would change the title only from the current postId, so that next posts will be with no title and old ones stay untouched.

DiggRedditSlashdotTwitThisSphinnStumbleUpondel.icio.usFacebookGoogleTechnoratiE-mail this story to a friend!

Firefox - Where is everybody?

Monday, October 29th, 2007

Say, what browser are you using? You’re still with Internet Explorer?

It’s time to move on. Go ahead and download Firefox and enjoy a safer, faster and a better browser.

I can’t understand why people still use IE as their main browser, and especially why web developers develop applications designed only for IE. It seems so stupid to do it.

The main reason I like (I think it’s love…) firefox is the huge amount of add-ons available to download, all open source, all free.

The following add-ons are a must for every Firefox user:

Firefox is heaven to Web Developers. I can’t imagine myself developing web applications with IE. (Actually I can, I had to do it few months ago for a customer and that was a night mare…)

The following add-ons are for developers. They will just make your life easier.

And for those of you who read Hebrew, this section is for you:

DiggRedditSlashdotTwitThisSphinnStumbleUpondel.icio.usFacebookGoogleTechnoratiE-mail this story to a friend!



Vulnerability Scanner