Copyrighting your Membership Site
If you have a Wordpress membership site you will want to have an up to date copyright notification at the bottom. If you are like us and have many different wordpress sites and membership sites, you will not want to go through and copyright each one on January 1st each year. Can you say hangover? Who wants to look at PHP code then?
So you need to use a script to dynamically create the date in php so that your copyright notice stays up to date.
Luckily, we have that free copyright membership script for you.
Just copy this code:
© YOUR NAME <?=date(”Y”);?>
The © is the part that adds the copyright symbol. The <?=date(”Y”);?> is the php tag that will print the current year.
Change YOUR NAME to your real name, and if you started the membership website before the current year you can update this free copyright membershipscript like this:
© YOUR NAME 2001 – <?=date(”Y”);?>
The 2001 would be the year that you started the membership site.
Remember, having an updated copyright notice on your membership site not only helps you protect your valuable information, it also sends the signal to your membership site members and potential members that your membership site is up to date and valuable.



