How to exclude noindex posts from sitemap
-
hello i used below code to noindex all posts in a category.
/* Noindex all posts in a category */ add_filter("wpseo_robots", function($robots) { if (is_single() && in_category(array(100))) { return "noindex,follow"; } return $robots; });but these posts are in yoast sitemap. any code to exclude noindex urls from sitemap ?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
The topic ‘How to exclude noindex posts from sitemap’ is closed to new replies.