惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
A
About on SuperTechFans
Y
Y Combinator Blog
V
V2EX
Engineering at Meta
Engineering at Meta
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog
博客园 - 叶小钗
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
H
Help Net Security
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MongoDB | Blog
MongoDB | Blog
B
Blog
G
Google Developers Blog
J
Java Code Geeks
博客园 - 三生石上(FineUI控件)
IT之家
IT之家
N
Netflix TechBlog - Medium
腾讯CDC

Example blog

Ghost routing explained with routes.yaml examples — routes, collections & taxonomies Ghost redirects explained with practical redirects.yaml examples How to Serve JSON or XML Data in Ghost How to Change Your Default Post Template in Ghost Ghost Custom Theme Settings How to add Google Fonts to Ghost Themes How to Configure Ghost with Mailgun Ghost Theme Structure & Organization How to Make Custom Templates in Ghost Themes How to Install Ghost CMS via Ghost-CLI How to Add Syntax Highlighting to Ghost The best Ghost CMS hosting platforms Ghost 6.0 — Social Web and Native Ghost Analytics Ghost CMS Social web beta, email 2FA and more author social links How to keep custom design settings when updating your Ghost theme How to use the public preview card in Ghost How to add members-specific sections in Ghost How to customize the default content CTA in Ghost How to build a custom homepage in Ghost An overview of Ghost editor cards and and how they work Ghost CMS News: One-time payments & collecting sales tax How to customize the private site access template in Ghost How to add custom fonts in Ghost themes Ghost CMS News: Additional payment methods & internal linking How to use Code Injection in Ghost How to set meta data of your custom routes & collections in Ghost Ghost CMS News: TK reminders, ActivityPub and improvements How to format dates and use the date helper in Ghost Ghost CMS internationalization, custom fonts & spam protection Understanding and optimizing post and page settings in Ghost CMS
How to Open External Links in a New Tab in Ghost
Bright Themes · 2022-11-05 · via Example blog

By default, all links in your posts are opened in the same browser window. There are advantages and disadvantages for both cases, but since you are reading this article you are probably aware of these and looking for opening the external links in a new tab on your Ghost site.

There are several considerations to keep in mind when doing this:

  • Time on site: Having external links open in a new tab can help keep visitors on your site longer, which in turn could possibly help improve engagement metrics like bounce rate and time on site.
  • User experience: If a reader is in the middle of your blog post, they probably don't want to leave your page every time they click a link. You want people to spend as much time as possible on your site and provide the best experience possible.
  • Inaccurate Analytics: Sometimes users want to better understand the article's context by clicking a link, but this doesn't mean they want to leave your site without having finished reading the article. However, your site analytics will show a different story. If your external links open in the same tab, it'll show that users are exiting your site quicker than they actually are.
  • Back-Button Fatigue: Opening external links in the same tab creates back-button fatigue for users. Every time the user goes to an external website they have to hit the back button to go back to your website. If they decide to click the links on the other website, they have to hit the back button even more times to get back to your site. This is a lot of unnecessary work for users.

How to achieve it in Ghost

There are two main ways you can achieve opening your external links in a new tab in Ghost: HTML and Javascript. With HTML you control each link separately, while with Javascript you can target all external links in your article.

The HTML way

As mentioned before, this gives you the possibility to control each link separately, but you will have to use either use the HTML card or the Markdown editor to manage it. The most important thing is, that you have to add the target="_blank" property to the links. Here's an example:

<a href="https://www.example.com" target="_blank">Go to example dot com</a>

As you can see this is not complicated but it's inconvenient because every external link has to be replaced with this code block, and you lose some of the flexibility of the Ghost editor.

The Javascript way

Another solution is using Javascript to check all the external links and add the target="_blank" property to the links programmatically. You can use the following JavaScript snippet for this.

<script>
  const domain = location.host.replace('www.', '');
  const links = document.querySelectorAll('a');

  links.forEach((link) => {
    if (!link.href.includes(domain) || link.href.includes(`ref=${domain}`)) {
      link.setAttribute('target', '_blank');
      link.setAttribute('rel', 'noreferrer noopener');
    }
  });
</script>

Add this snippet in your Ghost Admin Settings > Code Injection > Site Footer. It should be placed in the footer because your content should be loaded when the script is executed.

To explain the different parts of the script:

  • the domain constant will store your domain name for comparison against other links
  • the links constant will store all links on your current page
  • the next step is looping through the links and adding the target="_blank" attribute as well as the rel="noreferrer noopener" attribute.

Feel free to adapt the script according to your needs. For example, you can target links inside your post content only, for this you have to know the CSS class or ID. In our case this is content most of the time, so the code would be:

const links = document.querySelectorAll('.content a');

If you want to find out more about the noopener or noreferrer attributes check out this guide from ahrefs.

Conclusions

There are some important things to consider before changing your links' behavior and some simple things you can do to open your external links in a new tab. The Javascript code provided can be changed as explained above and it's a good way to handle this.