
Originally Posted by
Jen
Well, you're going to have more than one page with the post content anyway - archives, tags, category pages, etc. - so it makes sense to me to do the Authority Blogger thang and prioritize the interests of your readers.
Well, is not exactly so. You can add a meta tag on archive/tag/category pages so Search engines won't index it and avoid duplicate content, this is the line in question
HTML Code:
<meta name='robots' content='noindex, follow' />
And this is how you do it in Wordpress
PHP Code:
<?php
if((is_single() || is_category() || is_page() || is_home()) && (!is_paged())){
// <!-– ok google, index me! –->
}else{
// <!–- google, please ignore - thanks! -–>
echo "<meta name='robots' content='noindex, follow' />\n ";
}
?>
And of course, you could just remove is_home() from the if statement and then the index won't be indexed as well, but to a large extent this has highly undesirable side effects. You do want your home to be indexed and that is why is much trickier.
But having said that, Jen is right and ultimately you must address your reader needs, because that is what is going to create a faithful reader base and more backlinks which are also good for SEO.