Wordpress theme SEO (Part 2)
How were you doing with the first part of the wordpress theme SEO? I hope that it helps you with your effort in optimize your wordpress theme to be search engine friendly. I had to admit that it might not cover all types of theme or settings but hope to help you understand what is important in wordpress theme SEO. Let us get on to the second part.
This optimization is based on this template: Super Adsense Theme
Duplicate Contents
I’m no sure if you realized that Wordpress creates a lot of duplicate content for your blog. Especially when you are having tags (using Ultimate Tag Warrior Plugin), recent comments, archives, categories and etc. Search engines doesn’t like duplicate contents very much. This is bad for your blog’s SEO. To help solve duplicate contents problems, insert the following between the <header> tags:
<?php
if((is_home() && ($paged < 2 )) || is_single() || is_page() || is_category()){
echo '<meta name="robots" content="index,follow" />';
} else {
echo '<meta name="robots" content="noindex,follow" />';} ?>
This way, it’ll only tell search engines to index only the homepage, pages, and single pages. Everything else will be set to noindex.
Popularity: 28% [?]

Posted July 24, 2007
Comments(2)




















