Avoid duplicate content in wordpress paged comments
March 12, 2009
Introduced in WordPress 2.7, paged comments are great, especially when you have lots of comments. Thought, if your <title> tag isn’t optimized, your blog could produce some duplicate content, which is bad for SEO. To avoid duplicate content problems, you need a different title and a different meta description. The easiest way to do this is to add ‘Page X’ into the title and meta description of the blog post. Open your header.php file. paste the following code into your theme’s header just before... [Read the full story]
Avoid duplicate content in WordPress blog
January 19, 2009
Duplicate content is often a problem with WordPress blog, and as you probably know it, it can hurt your blog SEO. Here is a small code to insert on your header.php file, to get rid of duplicate content in your WordPress blog. Simply paste theses line between the <head> and </head> tags in your header.php file. <?php if((is_home() && ($paged < 2 )) || is_single() || is_page() || is_category()){ echo '<meta name="robots" content="index,follow" />'; } else { echo '<meta name="robots"... [Read the full story]



















