This is the PHP code to use to add an automatically updating copyright date for a blog, website, or whatever that allows PHP code.
The code:
<p>©<?php echo date("Y"); ?> All rights reserved</p>
Which produces this:
©2017 All rights reserved
OR... one may wish to keep the originating date in there, too, e.g.:
<p>© 2010-<?php echo date("Y"); ?> All rights reserved</p>
Which will give us:
© 2010-2017 All rights reserved