You simply need to edit your functions.php.

JavaScript
function year_shortcode() {<br>
  $year = date('Y');<br>
  return $year;<br>
}<br>
add_shortcode('year', 'year_shortcode');

Now go to your Footer widget and add the shortcode or where ever you wanted to add the YEAR for example 2020 by using

Special Thanks to CSS-Tricks

Was this worth your time?