这个代码不在主题里,在wp_head()函数里,你可以这样去掉:
在主题文件夹里找到functions.php这个文件,然后在有add_filter的附近,加上下面这段代码,刷新一下,搜索页面的robots标签就消失了!
add_filter('wp_robots', 'fanly_basic_robots_remove_noindex', 999); function fanly_basic_robots_remove_noindex( $robots ){ return get_option('blog_public') ? [] : $robots; }