How to remove noindex from homepage
-
Hi, how do I remove noindex from the homepage?
<meta name=robots content=’noindex, follow’/>
I’ve already tried the settings like in the Settings > Reading menu, I’ve also forced search engine permission within the Yoast Seo settings within the home page, but nothing removes. I’ve also tried a code in function.php and also not removed, just add the string at the end, so it looks like this: noindex, follow, index, follow. Here’s the code:
/**
* EDITED BY OBOT ERNEST
* REMOVES NOINDEX META TAG FROM HOME PAGE & SEARCH PAGE IMPLEMENTED BY YOAST
*/add_filter(‘wpseo_robots’, ‘yoast_no_home_noindex’, 999);
function yoast_no_home_noindex($string= “”) {
if (is_home() || is_front_page() || is_search()) {
$string= “index,follow”;
}
return $string;
}I don’t know what to do, google doesn’t just index the home page because of the presence of this noindex on the site. Does anyone have a solution?
The page I need help with: [log in to see the link]
- The topic ‘How to remove noindex from homepage’ is closed to new replies.