Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mariusghitulescu/5d1f9ac225ebfd4abc11e4d1f8ed0a93 to your computer and use it in GitHub Desktop.
Save mariusghitulescu/5d1f9ac225ebfd4abc11e4d1f8ed0a93 to your computer and use it in GitHub Desktop.
/* Noindex all posts in a category */
add_filter("wpseo_robots", function($robots) {
if (is_single() && in_category(array(100))) {
return "noindex,follow";
}
return $robots;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment