Add the Footer Year to Any site
Found this little trick recently to auto update the year in your footer:
Add this to functions:
/* Renders current year */
function display_current_year() {
return date('Y');
}
add_shortcode('current_year', 'display_current_year');
Put this shortcode where you want the year to show up:
[current_year]