MyBB Community Forums
Google SEO nofollow only to external links - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Extensions (https://community.mybb.com/forum-201.html)
+--- Forum: Plugins (https://community.mybb.com/forum-73.html)
+---- Forum: Plugin Support (https://community.mybb.com/forum-72.html)
+---- Thread: Google SEO nofollow only to external links (/thread-148589.html)



Google SEO nofollow only to external links - marcus123 - 2013-12-03

Guys how stop Google SEO plugin from adding nofollow to internal links?

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;
}