Skip to content

Instantly share code, notes, and snippets.

@ideag
Created August 20, 2014 07:55
Show Gist options
  • Save ideag/b92b5bf44dd14fa52e0b to your computer and use it in GitHub Desktop.
Save ideag/b92b5bf44dd14fa52e0b to your computer and use it in GitHub Desktop.
<?php
add_filter('aioseop_robots_meta','klausk_noindex');
function klausk_noindex($string) {
global $wp_query;
if ($wp_query->is_category && $wp_query->query_vars['cat']==1) {
$string = str_replace('noindex','index',$string);
}
return $string;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment