Manually updating the copyright year could be annoying to everyone. We need to change the copyright year every year. But there is a solution for this indeed. You can automatically update the copyright year using PHP and also using JavaScript.
These code snippets updates the copyright year automatically. JavaScript code works on any webpages whereas PHP code works only on PHP pages. But both they have their own advantages.
JavaScript Code Snippet
<script type="text/javascript">
now=new Date();
year=now.getFullYear();
</script>© Copyright 2008-<script type="text/javascript">
document.write(year);
</script>
The output will be like this :
© Copyright 2008-2009
Note : You should update the starting year for your copyright year.
PHP Code Snippet
© Copyright <?php
$then = 2007;
$now = date(’Y');
if ($then == $now)
echo $now;
else
echo "$then - $now"; ?>
You can also try this snipper for simplity of code
© Copyright 2007 - <?php echo date('Y'); ?>
Note : You need to edit $then for setting it to the year your blog launched. The final year is automatically calculated using date() function of PHP.
Nice way to auto update copyright date, thanks.
its quite easy and usefull … Well most blogs have automatic updates of this year…
like theme junkie… thanks pradeep…
this is quite Easy…thanks for the codes..
Now a day people are becoming to lazy.. I dont want to be that much lazy.. but nice thing.. :p
NIce trick!
I never thought to write a script to update the Copyright year because it`s fun to change it yourself, to think what you have done in a year
nice…one…bro
.-= Dev | Technshare's last blog…<a href="http://www.technshare.com/tips-to-increase-page-rank/">8 Tips to Increase your Google Page Rank</a> =-.
So what would the relevant code be in Thesis?
I think the php coding of date (y) is enough for making the copyright year displayed. isnt it?
Anybody can add a copyright text on the footer of the page or i need to pay something to put a copyright text ?
Nice share buddy. It will help busy bloggers
He he he Nice one there. Simple Javascript to do the needy.
DIdn’t get the thought of this until now
Prefer using PHP People.
Javascript is not reliable as it runs in client side. Moreover, you can’t put this code in .htm(l) files in most of the servers as far as i know.
So better config the server to hav a common footer that runs in php
I recently moved from Blogger to WordPress! I will need this script now! Thanks a ton!
If you have any suggestions for a WordPress newbie like me, then feel free to tell me about it!
Actually, I never though of this before. Thanks for remind me. I’ll take a look =)
Well, updating an year is not that annoying, a new year comes once in 365 days
Hmm thats a one good handy trick.
Sushant@webdire.com