add_filter('wp_robots', 'fanly_basic_robots_remove_noindex', 999); function fanly_basic_robots_remove_noindex( $robots ){ return get_option('blog_public') ? [] : $robots; }