-
-
Save wormeyman/f253046a529b8eb0071c931d578342bb to your computer and use it in GitHub Desktop.
Add target="_blank" to external links with pure JavaScript. in WordPRess
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'wp_footer', function () { ?> | |
<script> | |
document.addEventListener("DOMContentLoaded", function () { | |
// remove subdomain of current site's url and setup regex | |
var internal = location.host.replace("www.", ""); | |
internal = new RegExp(internal, "i"); | |
var a = document.getElementsByTagName("a"); // then, grab every link on the page | |
for (var i = 0; i < a.length; i++) { | |
var href = a[i].host; // set the host of each link | |
if (!internal.test(href)) { | |
// make sure the href doesn't contain current site's host | |
a[i].setAttribute("target", "_blank"); // if it doesn't, set attributes | |
} | |
} | |
console.log('EJ Loaded page'); | |
}); | |
</script> | |
<?php } ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment