重复内容是指有两个或者更多的页面有相同或者基本相同的内容。我们必须避免重复内容以免被搜索引擎惩罚。但是有时候我们需要在页面上显示2个(获这个更多)日志列表,通常我们是通过多个循环(一个标准的循环,一个来自特定的分类的循环)来实现。这样通常是你就能不仅想推荐最新写的日志,同时来自某个特定的分类。
<?php $my_query = new WP_Query('category_name=featured&showposts=1');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID;?>
<!-- Do stuff... -->
<?php endwhile; ?>
<!-- Do other stuff... -->
<?php if (have_posts()) : while (have_posts()) : the_post();
if( $post->ID == $do_not_duplicate ) continue; update_post_caches($posts); ?>]
<!-- Do stuff... -->
<?php endwhile; endif; ?>
其他解决方案
- How To: Avoid Duplicate Posts 这篇文章主要讲解如何避免除了单篇日志之外的重复多篇日志。
- Reducing Duplicate Content on WordPress Blogs
- Duplicate Content Cure Plugin for Wordpress, 这是一个非常有效的 SEO 插件,它能阻止搜索引擎索引含有重复内容的 WordPress 博客的页面,如存档,分类页面。它是通过添加
noindex,follow
这样的 meta 标签实现的。<meta name="robots"content="noindex,follow">
翻译自 Most Desired WordPress Hacks: 11 Common Requests and Fixes 第二点。
标签:wordpress教学