如何不自动索引特定类别的所有帖子?

时间:2020-02-05 作者:mukesh

我的网站正在自动导入其他网站的提要。很明显,这是谷歌复制的内容。因此,我想不索引所有帖子都来自该提要。谢谢

1 个回复
SO网友:Andrea Somovigo

存在excluded-catexcluded-cat-1 要从索引中排除的类别:

add_action(\'wp_head\',\'AS_exclude_category_from_indexing\');

function AS_exclude_category_from_indexing(){
  $html="";
  if(has_category(\'excluded-cat\') || has_category(\'excluded-cat-1\')){
    $html= "<meta name=\\"robots\\" content=\\"noindex,follow\\">".PHP_EOL;
  } 
  echo $html;
}

相关推荐

从页面中删除“noindex,Follow”

我正在使用Yoast编写的WordPress SEO插件。默认情况下,该插件在每个页面上显示“noindex,follow”。我确信我知道显示“noindex,follow”的文件,但经过多次“调整”,我似乎无法删除代码。文件如下:https://plugins.svn.wordpress.org/wordpress-seo/tags/1.2.8.3/frontend/class-frontend.php如果您能让我知道哪一行需要注释掉,或者哪些需要编辑,我将不胜感激。:)