Copyright-Examples

How to AUTOMATICALLY Update Your Copyright Year

Sharing is caring!

Right here I wish to share one small tip that many individuals overlook when a brand new yr begins: Updating the yr in your copyright discovery. Oh, you don’t even have a kind of? Perhaps you continue to present ‘Powered by Squarespace’ in your footer? I extremely advocate eradicating that and to populate your footer with all or any of those:

  • Copyright Discover

  • Your contact particulars

  • Hyperlinks to pages that aren’t in the principal navigation

  • Location map (if you’re a bodily enterprise)

  • Hyperlinks to your insurance policies

  • Social media hyperlinks

  • An e-newsletter sign-up field

As for updating the copyright year, many individuals overlook to do that and with this little piece of code, you by no means must be one in every one of them once more as this may do it for you robotically!


The Code

If you’re on an enterprise or increased plan you should utilize the Code Block however in any other case, the Markdown Block will work, too. Enter the next HTML code for the varied eventualities:

Simple:

<p>Copyright &copy; <script>document.write(new Date().getFullYear())</script> Your Name All Rights Reserved</p>

Date range:

<p> Copyright &copy; 2014-<script>document.write(new Date().getFullYear())</script> Your Name All Rights Reserved</p>

Center copyright notice:

<p style="text-align: center"> Copyright &copy; 2014-<script>document.write(new Date().getFullYear())</script> Your Name All Rights Reserved</p>

Sharing is caring!