It must have been a leap year thing but regardless the reason, I ran across more than a dozen arts org websites yesterday all with copyright notice dates that were 2015 or older.
It took me off guard at first as this function is usually addressed by automatically changing the year based on the host server timestamp. Having said that, it is certainly something that can be manually entered as text so unless your site’s content is published via a Creative Commons License, take a moment today and check your website(s) copyright notice to make sure the year reads 2016.
If your site was built using WordPress you probably have the auto date functionality in place already. Having said that, your developer may have taken some shortcuts leaving you with a custom theme which cut that part out of the final templates. This makes the job for the developer easier but isn’t necessarily in your best interest. As a result, they probably entered your copyright info into your footer as plain text and either never told you about the need to manually update, or only mentioned it in passing.
If so, here’s a quick way you can get that auto-year functionality back. Yes, it involves some code, but it’s not all that scary (but if you’re the least bit hesitant, err on the side of caution). You’ll need to add the following code to your functions.php file:
function year_shortcode() {
$year = date('Y');
return $year;
}
add_shortcode('year', 'year_shortcode');
Now you can use a the [year] shortcode and it will automatically display the current year in four-digit format on the frontend. Just use that shortcode in the text of your copyright notice and you won’t have to worry about manually updating the date each year.
In the wake of the Wannacry ransomware attack, WordPress announced a major security release update yesterday (unrelated to Wannacry) and the timing should be…
The 5/18/2016 edition of Fortune.com published an article by David Meyer that highlights a new piece of wearable technology designed to provide deaf people…
Did you know that a routine boilerplate included in many grant agreements (especially those from government sources) stipulates the receiving organization agrees that their…
Wow. I would not even have thought to check that. Thank you for the suggestion!
You’re very welcome and glad it helped.