Created
August 20, 2014 07:55
-
-
Save ideag/b92b5bf44dd14fa52e0b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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