Wordpress SEO Tips
- Remove » from your Wordpress title
Change calls to wp_title() to wp_title(”"). Depending on your wordpress theme, you may also want to move the wp_title to be right after the <title> start tag
- Add noindex to Archives
To Avoid duplicate content issues. An easy hack is to add the following code into your header.php file.
<?php if(is_archive()){ ?><meta name="robots" content="noindex"><?php } ?>
- Use rel=nofollow in Anchor tags
Not all content is created equally use rel=nofollow when linking to unimportant content on your own site. Such as Terms of Use, Privacy policy pages.
Tags: SEO, Tips, Wordpress
This entry was posted
on Wednesday, July 2nd, 2008 at 11:58 am and is filed under Wordpress SEO Tips.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.
August 31st, 2008 at 2:13 pm
I thought it keeps archive to noindex, like blogger does. This is important issue, thanks for addressing it!
Nice tips.