如何阻止Wordpress插入noindex元标记?

时间:2018-06-27 13:38:21

标签: wordpress seo meta-tags noindex

我正试图让我的网站被搜索引擎收录。据此,来自Wordpress的东西正在注入一个阻止搜索引擎抓取我的网站的元标记:https://aw-snap.info/file-viewer/?protocol=secure&tgt=chrispokey.com

我开始认为这与wp_head();函数有关。我应该采取哪些下一步措施来删除以某种方式插入到我的网站标题部分中的noindex标记?

谢谢!

<?php
    if ( is_singular() ) wp_enqueue_script( 'comment-reply' );
    wp_head();
    ?>

2 个答案:

答案 0 :(得分:0)

请访问Settings » Reading,并确保在“鼓励机器人”设置附近未选中复选框。

答案 1 :(得分:0)

?我在这里找到了适合我的解决方案:?https://wordpress.org/support/topic/disable-noindex-on-certain-core-pages-2/

add_action( 'init', 'remove_wc_page_noindex' );
function remove_wc_page_noindex(){
    remove_action( 'wp_head', 'wc_page_noindex' );
}

这个问题似乎来自三个主题:

  1. How do I stop Wordpress from inserting a noindex meta tag?
  2. Wordpress remove Robots Meta Tag noindex
  3. Cannot remove action noindex in wordpress