Home › Forums › Pro Support › How to open link in new tab the list of post? › Reply To: How to open link in new tab the list of post?
May 1, 2020 at 5:47 pm
#15219
Keymaster
Hi there,
As of right now you would need javascript to do this, unfortunately.
Something like this:
<script>
jQuery( document ).ready( function( $ ) {
$('.wp-show-posts-entry-title a').attr('target','_blank');
} );
</script>