Ghost Blog external links to open in a new tab
In your Ghost site’s Code Injection Site footer, copy-and-paste one of these six scripts to make all of the external links in your posts open in a new window.
1) Put this in your Ghost site’s Code Injection Site Footer:
<script> $(function() { $('.post-content a').filter(function() { return this.hostname && this.hostname !== location.hostname; }).attr('target', '_blank'); }); </script> (Note: you might have to change the above .post-content to match the CSS selector for your specific theme.