Guys how stop Google SEO plugin from adding nofollow to internal links?
I think that this is the code that should be fixed
I think that this is the code that should be fixed
* Make links in a string nofollow.
*/
function google_seo_meta_nofollow($text)
{
if(is_string($text))
{
$text = str_replace('<a ',
'<a rel="nofollow" ',
$text);
}
return $text;
}