I would like to have the current year auto-update with either PHP or JavaScript. It does not work in the “Theme Options” > “Footer” > “Footer Copyright”
PHP
<?php echo date(“Y”); ?>
JavaScript
<script language=”javascript” type=”text/javascript”>
var today = new Date()
var year = today.getFullYear()
document.write(year)
</script>