我已经取消选中它: 设置 -> 阅读 -> 搜索引擎可见性。 所以现在正在制作中。 但我只能在内容中看到“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' );
因此我可以看到它已添加到我的开发本地主机中。 但它仍然没有在生产中显示(在线)。 有人有想法吗?
follow 和 index 是默认行为,因此它们不是必需的。
如果 noindex 和 none 都不存在,则假定为索引。 如果 nofollow 和 none 都不存在,则假定为 follow。
https://developers.google.com/search/docs/advanced/robots/robots_meta_tag