You can help?
What happens if I disable the plug-in?
All links created so far will become do follow? Or will they continue nofollow???
I have many outgoing links and it is important to me that they continue to be no-follows.
]]>For posts the plugin is working quite great.
But it is adding nofollow tag in the site pages also, yet no meta box is visible in the page editor. Please tell a solution for that.
Hello,
this plugin adds a “nofollow” to all external links correct?
It does not add it to internal links, right?
Also, if I delete the plugin is the “nofollow” lost?
]]>First of all, your work is great. It is the only nofollow plugin that is working right now for me but I had an issue recently with regards to having WordPress installed in a seperate folder on the page, like this https://www.example.com/blog/.
Plugin works only for the domain with /blog but anything on the root domain receives a rel=nofollow.
Propose to add an optional feature to only get hostname if required.
For people interested in overriding the function. I added two lines to make it work for me.
static function auto_nofollow_callback( $matches ) {
$inside_a = $matches[1];
$site_link = get_bloginfo( 'url' );
/**
* overrides site url to get hostname only
* https://stackoverflow.com/questions/17201170/php-how-to-get-the-base-domain-url/17201261
*/
$site_link = parse_url($site_link);
$site_link = $site_link['scheme']."://".$site_link['host'];
if( strpos( $inside_a, $site_link ) ) { //internal link
return "<a$inside_a>"; //the space is already in $inside_a
}
if( strpos( $inside_a, 'rel' ) === false ) //already has rel attribute
return "<a$inside_a rel=\"nofollow\" class=\"".$site_link."\">";
else
return "<a$inside_a class>";
}
]]>
hi, in the description of the plugin, it says, that the plugin ignores the rel attributes, i added rel=noopener so it opens on a new tab, but i need to add the nofollow too, but the plugin ignores it, any solution for this? could you specify to ignore the rel=nofollow only?
]]>I just save a post and the plugin showed that it no longer works. It dd NOT add a “Rel=”nofollow” to any of my external links, This plugin may need an update. Please update this plugin, It is incompaible with my WordPress update.
]]>I CANNOT find this plugin’s dashboard to change settings. I used to be able to. It’s nowhere now. Help. please.
]]>Is it possible to make the “Exclude Post” default to checked? I only want certain ones to be “nofollow” and I would uncheck those. Thanks!
]]>i did not understant what this plugin does ?
]]>