即使未选中搜索引擎可见性,也不包括 WordPress 机器人索引跟踪

问题描述 投票:0回答:1

我已经取消选中它: 设置 -> 阅读 -> 搜索引擎可见性。 所以现在正在制作中。 但我只能在内容中看到“max-image-preview:large”。

我已经尝试手动添加 php 函数:

function wp_add_robots_custom( $robots ) {
    $robots['follow'] = true;
    $robots['index'] = true;
    
    return $robots;
}
add_filter( 'wp_robots', 'wp_add_robots_custom' );

因此我可以看到它已添加到我的开发本地主机中。 但它仍然没有在生产中显示(在线)。 有人有想法吗?

wordpress seo search-engine-bots
1个回答
1
投票

follow 和 index 是默认行为,因此它们不是必需的。

如果 noindex 和 none 都不存在,则假定为索引。 如果 nofollow 和 none 都不存在,则假定为 follow。

https://developers.google.com/search/docs/advanced/robots/robots_meta_tag

© www.soinside.com 2019 - 2024. All rights reserved.