year date in the copyright block
-
Good afternoon. How can I make the year date in the copyright block change automatically every year?
Attachments:
You must be
logged in to view attached files.
Hello,
If you want to add a dynamic year in your footer, you can use the below code in function.php:
function year_shortcode() {
$year = date('Y');
return $year;
}
add_shortcode('year', 'year_shortcode');
After placing the above code, you have to use this short code“[year]”inside the “Copyrights text” area, under theme settings >> Footer.
Best Regards,