Keep the year in your website footer up to date – How to
Learn how to always keep the copyright year up to date in your website footer – keeping you from coming back to update it every year!
January 6, 2020

Featured Image
Place this code within the functions.php file of your child theme:
// Display Current Year Shortcode
function year_shortcode() {
$year = date('Y');
return $year;
} add_shortcode('year', 'year_shortcode');
Then, where you want to display the current year, place [year].