Wordpress And Duplicate Content

January 8, 2007 – 6:09 pm

If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!

Wordpress gives off a ton of duplicate content in its’ default state. One thing you will definitely want to do is check your template and do these things first:

1) Cut any links to the “trackback” and “feed” pages, which will show up as dupes.
2) Add the following code to your header.php file:

if ((is_home() && ($paged < 2 )) || is_single() || is_page() || is_category()){
echo "“;
} else {
echo ““;
}
?>

Don’t copy that code directly, as it is escaped for formatting. You can use this file to copy and paste from.

This will remove most of the sludge pages such as the categories, the index pages numbered greater than 2 and the redundant archive pages. These are the major sources of duplicate content using Wordpress, so this addition is a must.

If you enjoyed this post, subscribe to the Web's Best RSS feed!. See if your website's meta tags are optimized

Related post(s) you may enjoy:

  • Quick Upgrade To WordPress 2.1 And Redesign
  • GoogleFlux: the index that shifts every second
  • VBulletin Websites And Google Supplemental Results
  • Google’s indexing problems roll on - pages fall out daily
  • Adding To Your Website On A Schedule

  • Post a Comment