Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wpexplorer/99101389770798af7c3a15c39c4dd620 to your computer and use it in GitHub Desktop.
Save wpexplorer/99101389770798af7c3a15c39c4dd620 to your computer and use it in GitHub Desktop.
Total | Open custom links in a new tab
// 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