Automatically change footer year
Never forget to change your footer (c) Year!
Here's a simple way to automate it:
1- edit page template
2- add custom html gadget
3- open gadget> click on the Edit Code button on left side nav
4- click save and never deal with that again 🙂
*Note edit Nicasio Design text to make it your own...
© Nicasio Design <span id="year"></span></p>
<!-- JS before /body -->
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>