Remove No index from Search pages
-
Hello,
I have changed the search sludge of my site to /search/ and I would like to have them indexed by search engines.
So I added the below to the function.php:add_filter( 'wpseo_robots', 'yoast_seo_robots_remove_search' ); function yoast_seo_robots_remove_search( $robots ) { if ( is_search() ) { return false; } else { return $robots; } }
But still I see <meta name=’robots’ content=’noindex, follow’> on search pages.
Please, how can I change the meta to content=’index, follow’ for search pages?
Thanks ??
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Remove No index from Search pages’ is closed to new replies.