The new year is just around the corner! đ Every January, I find myself going through my websites, making sure everything is up-to-date. And if you’re like meâa WordPress site owner or developerâyou probably have a little chore on your list: updating the year in the footer.
For example, your footer might say:
Copyright© 2024 My Amazing Website
But guess what? Itâs about to be 2025, and youâll need to update that manually.
If you manage multiple sites or just want to save time, updating this every year can be a bit tedious, right? So, why not let your website do the work for you? I’ll show you a simple way to make the year in your footer update automatically by adding a tiny bit of code to your theme’s functions.php
file.
Why Automate the Year?
Manually updating the footer might not seem like a big deal. But think about it:
- What if you forget? It looks unprofessional to display an outdated year.
- Automation saves time, especially if youâre managing multiple websites.
With a small snippet of PHP, WordPress can handle this for youâand youâll never have to think about it again.
How to Make the Year Update Automatically
Hereâs the step-by-step guide:
- Access Your Themeâs
functions.php
File- In your WordPress dashboard, go to Appearance â Theme File Editor.
- Locate the
functions.php
file in the right-hand menu.
- Add This Code to Your
functions.php
File
Copy and paste this snippet into the file:
12345// Create a shortcode for the current yearfunction dynamic_year_shortcode() {return date('Y');}add_shortcode('current_year', 'dynamic_year_shortcode');
This code creates a shortcode called2025
that outputs the current year. - Use the Shortcode in Your Footer
- Go to your WordPress footer settings or widget area.
- Insert this text where you want the copyright to appear
1Copyright© [current_year] My Amazing Website
- Save Changes
Once saved, visit your website, and youâll see the current year displayed dynamically. Next year, the shortcode will automatically update to 2026, 2027, and so onâno extra work required!
The Result
Hereâs what visitors will see:
Copyright© 2025 My Amazing Website
And when 2026 rolls around, it will update automatically. Cool, right?
Conclusion
This little tweak is a simple yet powerful way to keep your WordPress site polished and professional. Itâs one less thing to worry about every yearâand as a developer or site owner, thatâs a win in my book.
If you found this helpful, why not give it a try? Let me know in the comments if you ran into any issues or have other tips to share! đ
Now, letâs bring in the new year with an updated, automated footer! đ