03.02.07
Plugin: Wordpress Duplicate Content Cure
Update: 3-04-07You can change line 24 in the plugin from:
if((is_single() || is_page() || is_home()) && (!is_paged())){
to
if((is_single() || is_category() || is_page() || is_home()) && (!is_paged())){
and that will put your category pages in Google. This plugin is very simple and can be modified very easily.
I just installed the Wordpress Duplicate Content Cure. Wordpress creates lots of different pages that are very similar or completely the same. What it does is put a “noindex,follow” tag on these pages.
Be carefull with this plugin it can hurt your rankings. It is very common for a blog to rank for category pages. This plugin will remove all pages other than the ones you create. It will remove the category pages from google. Category pages rank well in Google because you end up with a pretty high keyword density and the internal linking. I am not recommending this plugin just testing it out. I may end up making some changes to it. I think it is a good idea just knocks out a bit too much.


Amir said,
03.02.07 at 9:08 am
Thanks for the post. I would be interested in a wordpress seo plugin and css skin combo list or a simple guide to making wordpress search engine optimized. I like this Plugin, but does it take retroactive effect ie if I have older pages already indexed in Google that have pagerank etc will I lose this due to the noindex,follow tag?
Thanks
Marios Alexandrou said,
03.03.07 at 10:18 pm
If it could be configured to exclude just archive pages then it might be worth checking out. Category pages are good from a search engine perspective because they are focused (hopefully) on a particular topic. Archive pages on the other hand are topicless groupings of content that are likely to go supplemental.
I usually advise those that ask to remove archive pages from their navigation, but a plug-in that excluded them might be more appealing to those that like the idea of an archive. The only thing I like about archives is they show the age of your blog which can buy you some credibility with your readers.
bjones said,
03.04.07 at 11:45 pm
Just a heads up. Your modification to the duplicate content cure plugin isn’t doing what you want it to do. Your mod only allows the first page of the category to be indexed. I have updated the plugin so that you can now specify whether or not you want to keep your category pages indexed, and it will keep all category pages, not just the first page of each category.
You can download the updated version (see the link above)
ogletree said,
03.05.07 at 12:38 pm
Your right I did not think about that. But now that you mention it that is what I want. I only want one page per category indexed. Any more would get back into the duplicate content issue. I might want more category pages indexed if I figured out a way to give each one a different title. Pages with same title tend to go into the sup index.
Freier Holger said,
03.25.07 at 6:04 am
without the plugin -> is also possible to insert the following code in the header.php file.
1)) { ?>
ogletree said,
03.25.07 at 11:05 am
Yes. you can stick the code right above the <title> tag. If you will notice I took out the index, follow part because that is redundant. I personally think it is retarded to add that junk to your site. Google will scoop up anything.
<?php
if((is_single() || is_category() || is_page() || is_home()) && (!is_paged())){
}else{
echo "<meta name=\"robots\" content=\"noindex,follow\">\n";
}
?>
Breaking Code Writing, Motivation, Business Coaching, Design - Center of Muse — Helping Freelancers, Entrepreneurs Start-Up Small, Home, Businesses Based on Passion. said,
01.30.08 at 12:05 pm
[…] a year ago, now, Ogletree posted the awesome snippet of code that should work to let Google’s bots not see you as […]