add_filter('wp_robots', function($robots){ if (is_author()) { $robots['noindex'] = true; } return $robots; }); add_filter('wp_sitemaps_enabled', '__return_true');
AI For Education