2016-07-15 30 views
0

我有重复的标题&类别归档排序的重复元描述问题。Woocommerce搜索引擎优化 - Noindex'排序'档案

虽然其他子页面正确无索引,但重复问题将在1日以下列格式显示。

/product-category/name/ 
/product-category/name/?orderby=dat 
/product-category/name/?orderby=menu_order 
/product-category/name/?orderby=price-desc 
/product-category/name/?orderby=price 

我正在使用Yoast SEO插件,我们如何将这些归档从排序中排除?

回答

1

使用此代码到functions.php

add_action('wp_head', 'cp_prevent_indexing_orderby'); 

if(!function_exists('cp_prevent_indexing_orderby')){ 
    function cp_prevent_indexing_orderby() { 
     if (isset($_GET['orderby'])){ 
      echo '<meta name="robots" content="noindex, nofollow">'; 
     } 
    } 
} 
+0

谢谢。这样可行 :) – tushonline