Add a Copyright Notice to Ghost Blog

Add copyright text to the bottom of your website using code injection

Add a Copyright Notice to Ghost Blog
Photo by Florian Olivo

By removing the "Powered by Ghost" tag using the code above, you will also remove the copyright notice. To re-add it, do the following.

In Settings → Code Injection, add this text to the "Site footer":

<p style="text-align: center; font-size: 14px; color: #999; background-color: #15171a; font-family: Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif, sans-serif; font-weight: 500;">
  Ian Greer © <script>
    var currentYear = new Date().getFullYear();
    document.write(currentYear);
  </script>. All rights reserved.
</p>

Replace "Ian Greer" with your name or business name. The year automatically updates.

Ian Greer © . All rights reserved.