// NOINDEX Gen 1 spun junk pages
function uc_noindex_junk_pages() {
if (is_admin()) return;
$uri = $_SERVER['REQUEST_URI'];
$junk_patterns = [
'/20-passenger-party-bus-rental/',
'/30-passenger-party-bus-rental/',
'/18-passenger-mini-bus-rental/',
];
foreach ($junk_patterns as $pattern) {
if (strpos($uri, $pattern) !== false) {
echo '' . "\n";
return;
}
}
// Noindex any page with "Tacky Light" in title
if (is_singular()) {
$title = get_the_title();
if (stripos($title, 'Tacky Light') !== false) {
echo '' . "\n";
}
}
}
add_action('wp_head', 'uc_noindex_junk_pages', 1);