Created
July 29, 2020 01:48
-
-
Save wpexplorer/99101389770798af7c3a15c39c4dd620 to your computer and use it in GitHub Desktop.
Total | Open custom links in a new tab
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
// Open custom links in a new tab | |
add_action( 'wp_footer', function() { ?> | |
<script> | |
jQuery( '.entry.has-redirect' ).each( function() { | |
var $this = jQuery( this ); | |
$this.find( '.entry-title a, .entry-media a, .entry-readmore-wrap a' ).attr( { | |
'target' : '_blank', | |
'rel' : 'noopener noreferrer' | |
} ); | |
} ); | |
</script> | |
<?php } ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment