• Hello,

    I am searching for an html/css option or better a plugin, with which I can let all external links open in a new window automatically. Moreover it would be fine when it is possible to set all external links to a certain domain to “no follow”.

    Is there any possibility of doing these? MAybe even 2 plugins? Or a good html/css solution? I dindt find anything after hours of research ??

    Thank you very much!

Viewing 4 replies - 1 through 4 (of 4 total)
  • If you add a link using the WYSIWYG editor, there is a small gear icon, clicking on that opens a popup where you can see a checkbox “Open link in a new tab”

    Thread Starter wordpressling

    (@wordpressling)

    ?? I know that. But I dont want to do it 1000 times manually. That is why I am looking for a plugin or a good html/js code for that.

    For html, you can just add target=”_blank” to the code. For example

    <a href="link" target="_blank">Anchor</a>

    For nofollow, add rel=”nofollow”

    <a href="link" target="_blank" rel="nofollow">Anchor</a>

    Thread Starter wordpressling

    (@wordpressling)

    I thin you misunderstood me. I know all of this ?? But I dont know how to set automatically ONLY A CERTAIN domain with iths subpages to nofollow.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Plugin for open external links in a new window & set certain domains to nofollow’ is closed to new replies.